diff options
author | Richard Braun <rbraun@sceen.net> | 2017-09-02 00:53:13 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-09-02 00:59:53 +0200 |
commit | 3fc1083c811d6a9e7fa6c816719cf8fc0577aa0f (patch) | |
tree | 4b878db9fb25e32b69ae08ff694ebfdac2f95506 | |
parent | f6466867eef67f7595432eefa1283b6a78cf09dc (diff) |
macros: new __unused macro
-rw-r--r-- | macros.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -86,6 +86,10 @@ #define __packed __attribute__((packed)) #endif +#ifndef __unused +#define __unused __attribute__((unused)) +#endif + /* * XXX Suppress warnings caused by some implementations of assert(). */ |