X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=lib%2Fcompiler.h;fp=lib%2Fcompiler.h;h=6bf514456fbde230ec0c9e5861c90a324275224b;hb=02dd3123a0e312f1d33403e744af52dd6096f12d;hp=2bb801a48c199ec9e47e0bfa4ec4f4fab7bc9994;hpb=efa6c663df0bcad748e3a89d7b3f4dec187f6f53;p=sliver-openvswitch.git diff --git a/lib/compiler.h b/lib/compiler.h index 2bb801a48..6bf514456 100644 --- a/lib/compiler.h +++ b/lib/compiler.h @@ -24,6 +24,7 @@ #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 @@ -31,6 +32,7 @@ #define STRFTIME_FORMAT(FMT) #define MALLOC_LIKE #define ALWAYS_INLINE +#define WARN_UNUSED_RESULT #endif #endif /* compiler.h */