compiler: Don't use __attribute__ for non-GCC compilers.
authorBen Pfaff <blp@nicira.com>
Fri, 12 Feb 2010 20:54:58 +0000 (12:54 -0800)
committerBen Pfaff <blp@nicira.com>
Fri, 12 Feb 2010 21:56:15 +0000 (13:56 -0800)
__attribute__ is a GCC feature that we should not expose to other
compilers.

lib/compiler.h

index ac1cd0f..2bb801a 100644 (file)
 #ifndef COMPILER_H
 #define COMPILER_H 1
 
+#ifdef __GNUC__
 #define NO_RETURN __attribute__((__noreturn__))
 #define OVS_UNUSED __attribute__((__unused__))
 #define PRINTF_FORMAT(FMT, ARG1) __attribute__((__format__(printf, FMT, ARG1)))
 #define STRFTIME_FORMAT(FMT) __attribute__((__format__(__strftime__, FMT, 0)))
 #define MALLOC_LIKE __attribute__((__malloc__))
 #define ALWAYS_INLINE __attribute__((always_inline))
+#else
+#define NO_RETURN
+#define OVS_UNUSED
+#define PRINTF_FORMAT(FMT, ARG1)
+#define STRFTIME_FORMAT(FMT)
+#define MALLOC_LIKE
+#define ALWAYS_INLINE
+#endif
 
 #endif /* compiler.h */