/usr/include/movit/defs.h is in libmovit-dev 1.6.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 13 14 | #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))
#define DOES_NOT_RETURN __attribute__((noreturn))
#else
#define MUST_CHECK_RESULT
#define DOES_NOT_RETURN
#endif
#endif // !defined(_MOVIT_DEFS_H)
|