diff options
Diffstat (limited to 'games/battlestar/extern.h')
-rw-r--r-- | games/battlestar/extern.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/battlestar/extern.h b/games/battlestar/extern.h index 0f62f3dd4b1..97fe817af45 100644 --- a/games/battlestar/extern.h +++ b/games/battlestar/extern.h @@ -1,4 +1,4 @@ -/* $OpenBSD: extern.h,v 1.16 2014/11/16 04:49:48 guenther Exp $ */ +/* $OpenBSD: extern.h,v 1.17 2014/11/16 04:50:46 guenther Exp $ */ /* $NetBSD: extern.h,v 1.5 1995/04/24 12:22:18 cgd Exp $ */ /* @@ -50,7 +50,6 @@ #define OUTSIDE (position > 68 && position < 246 && position != 218) #define rnd(x) arc4random_uniform(x) #define max(a,b) ((a) < (b) ? (b) : (a)) - /* avoid name collision with sys/param.h */ #define TestBit(array, index) (array[index/BITS] & (1 << (index % BITS))) #define SetBit(array, index) (array[index/BITS] |= (1 << (index % BITS))) #define ClearBit(array, index) (array[index/BITS] &= ~(1 << (index % BITS))) |