]> git.sesse.net Git - movit/blob - defs.h
Call init_lanczos_table() once instead of checking for it all the time.
[movit] / defs.h
1 #ifndef _MOVIT_DEFS_H
2 #define _MOVIT_DEFS_H
3
4 // Utility macros that are useful from other header files.
5
6 #ifdef __GNUC__
7 #define MUST_CHECK_RESULT __attribute__((warn_unused_result))
8 #else
9 #define MUST_CHECK_RESULT 
10 #endif
11
12 #endif  // !defined(_MOVIT_DEFS_H)