From 4380e924b27fb8528e1c50ebfb4dab4d76f9601d Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Fri, 12 Feb 2010 12:54:58 -0800 Subject: [PATCH] compiler: Don't use __attribute__ for non-GCC compilers. __attribute__ is a GCC feature that we should not expose to other compilers. --- lib/compiler.h | 9 +++++++++ 1 file changed, 9 insertions(+) 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 */ -- 2.43.0