X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=lib%2Fcompiler.h;h=6bf514456fbde230ec0c9e5861c90a324275224b;hb=4e6ca956f56b7a7f7284a4cd8788873ba57b229c;hp=ac1cd0fcb560e3378797cbeffa561e02b32cc3cf;hpb=39e94ea4dbf60510965620859655fb78f4529404;p=openvswitch diff --git a/lib/compiler.h b/lib/compiler.h index ac1cd0fc..6bf51445 100644 --- a/lib/compiler.h +++ b/lib/compiler.h @@ -17,11 +17,22 @@ #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)) +#define WARN_UNUSED_RESULT __attribute__((__warn_unused_result__)) +#else +#define NO_RETURN +#define OVS_UNUSED +#define PRINTF_FORMAT(FMT, ARG1) +#define STRFTIME_FORMAT(FMT) +#define MALLOC_LIKE +#define ALWAYS_INLINE +#define WARN_UNUSED_RESULT +#endif #endif /* compiler.h */