diff options
Diffstat (limited to 'lib/birdlib.h')
-rw-r--r-- | lib/birdlib.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/birdlib.h b/lib/birdlib.h index 1a575bf..1a27e96 100644 --- a/lib/birdlib.h +++ b/lib/birdlib.h @@ -13,9 +13,7 @@ #define OFFSETOF(s, i) ((unsigned int)&((s *)0)->i) #define SKIP_BACK(s, i, p) ((s *)((char *)p - OFFSETOF(s, i))) -#ifndef ALIGN -#define ALIGN(s, a) (((s)+a-1)&~(a-1)) -#endif +#define BIRD_ALIGN(s, a) (((s)+a-1)&~(a-1)) /* Utility macros */ |