This file is indexed.

/usr/include/movit/defs.h is in libmovit-dev 1.3.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
#ifndef _MOVIT_DEFS_H
#define _MOVIT_DEFS_H

// Utility macros that are useful from other header files.

#ifdef __GNUC__
#define MUST_CHECK_RESULT __attribute__((warn_unused_result))
#else
#define MUST_CHECK_RESULT 
#endif

#endif  // !defined(_MOVIT_DEFS_H)