diff options
Diffstat (limited to 'lib/birdlib.h')
-rw-r--r-- | lib/birdlib.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h index 904544cb..37337078 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -62,6 +62,13 @@ #define UNUSED __attribute__((unused)) #define PACKED __attribute__((packed)) +#ifdef IPV6 +#define UNUSED4 +#define UNUSED6 UNUSED +#else +#define UNUSED4 UNUSED +#define UNUSED6 +#endif /* Microsecond time */ |