diff options
author | Martin Mares <mj@ucw.cz> | 2004-05-31 23:02:09 +0200 |
---|---|---|
committer | Martin Mares <mj@ucw.cz> | 2004-05-31 23:02:09 +0200 |
commit | 206f59dfa8e59e32f4aef12dacb0804581b9f602 (patch) | |
tree | 4ee1010c3a6dbfba0acab758e373d5cf6710c8cc /lib | |
parent | 6a57bb311018570b6ee7beccafd2075108e346cb (diff) | |
download | bird-206f59dfa8e59e32f4aef12dacb0804581b9f602.tar bird-206f59dfa8e59e32f4aef12dacb0804581b9f602.zip |
Added UNUSED.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/birdlib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h index faf8bc6..1a575bf 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -1,7 +1,7 @@ /* * BIRD Library * - * (c) 1998--2000 Martin Mares <mj@ucw.cz> + * (c) 1998--2004 Martin Mares <mj@ucw.cz> * * Can be freely distributed and used under the terms of the GNU GPL. */ @@ -31,6 +31,7 @@ /* Functions which don't return */ #define NORET __attribute__((noreturn)) +#define UNUSED __attribute__((unused)) /* Logging and dying */ |