From: Ben Pfaff Date: Fri, 12 Feb 2010 20:54:58 +0000 (-0800) Subject: compiler: Don't use __attribute__ for non-GCC compilers. X-Git-Tag: v0.99.2~5 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=4380e924b27fb8528e1c50ebfb4dab4d76f9601d;p=sliver-openvswitch.git compiler: Don't use __attribute__ for non-GCC compilers. __attribute__ is a GCC feature that we should not expose to other compilers. --- diff --git a/lib/compiler.h b/lib/compiler.h index ac1cd0fcb..2bb801a48 100644 --- a/lib/compiler.h +++ b/lib/compiler.h @@ -17,11 +17,20 @@ #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 */