osl.h.in: Minor documentation improvements.
[osl.git] / gcc-compat.h
1 # define inline         inline __attribute__ ((always_inline))
2 # define __noreturn     __attribute__ ((noreturn))
3 # define __malloc       __attribute__ ((malloc))
4 # define __a_unused     __attribute__ ((unused))
5 # define likely(x)      __builtin_expect (!!(x), 1)
6 # define unlikely(x)    __builtin_expect (!!(x), 0)
7 # define __must_check   __attribute__ ((warn_unused_result))
8 # define __export __attribute__((visibility("default")))
9 /* 
10  * p is the number of the "format string" parameter, and q is 
11  * the number of the first variadic parameter 
12  */
13 # define __printf(p,q) __attribute__ ((format (printf, p, q)))
14 /*
15  * as direct use of __printf(p,q) confuses doxygen, here are two extra macros
16  * for those values p,q that are actually used by libosl.
17  */
18 #define  __printf_1_2 __printf(1,2)
19 #define  __printf_2_3 __printf(2,3)
20
21 #define _static_inline_ static inline