diff options
author | Ondrej Filip <feela@network.cz> | 2004-06-01 10:28:25 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2004-06-01 10:28:25 +0000 |
commit | 7fdd338c3600aa4e7a0ae3d5ce270b5a1f8ccc0c (patch) | |
tree | e0ea23a1a72ce5de2fded8118f8471690c8b1726 /lib/birdlib.h | |
parent | 22122d4d4c43c2c64a37aae597b4d439a6bfa268 (diff) |
ALIGN -> BIRD_ALIGN
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 1a575bf8..1a27e969 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 */ |