summaryrefslogtreecommitdiff
path: root/games/battlestar/extern.h
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-11-16 04:50:47 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-11-16 04:50:47 +0000
commit54381559e5a3b94745c4795fb2d1e53c9ee7ae40 (patch)
treeb14a6975989a85a7d6d06c22da2d695f9ab8f41e /games/battlestar/extern.h
parentf2273a76226705a4e8f5e015d1835449da4e3242 (diff)
Remove a bogotified comment
Diffstat (limited to 'games/battlestar/extern.h')
-rw-r--r--games/battlestar/extern.h3
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)))