osl-0.2.0.
[osl.git] / gcc-compat.h
index 61c3c88d1c4551a965aaa22c626ddf8fabec31ba..d17e6db4596268ccac73449a0327158b3c169c46 100644 (file)
@@ -4,22 +4,15 @@
 # define __a_unused    __attribute__ ((unused))
 # define likely(x)     __builtin_expect (!!(x), 1)
 # define unlikely(x)   __builtin_expect (!!(x), 0)
-/* 
- * p is the number of the "format string" parameter, and q is 
- * the number of the first variadic parameter 
- */
-# define __printf(p,q) __attribute__ ((format (printf, p, q)))
+# define __must_check  __attribute__ ((warn_unused_result))
+# define __export __attribute__((visibility("default")))
 /*
- * as direct use of __printf(p,q) confuses doxygen, here are two extra macros
- * for those values p,q that are actually used by paraslash.
+ * p is the number of the "format string" parameter, and q is the number of the
+ * first variadic parameter.  The two extra macros hardcode those values p,q
+ * that are actually used by libosl.
  */
-#define  __printf_1_2 __printf(1,2)
-#define  __printf_2_3 __printf(2,3)
-
-# if __GNUC__ > 3  || (__GNUC__ == 3 && __GNUC_MINOR__ > 3)
-# define __must_check  __attribute__ ((warn_unused_result))
-# else
-# define __must_check  /* no warn_unused_result */
-# endif
+#define __printf(p,q) __attribute__ ((format (printf, p, q)))
+#define __printf_1_2 __printf(1,2)
+#define __printf_2_3 __printf(2,3)
 
 #define _static_inline_ static inline