summaryrefslogtreecommitdiffstats
path: root/games/battlestar/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'games/battlestar/misc.c')
-rw-r--r--games/battlestar/misc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/games/battlestar/misc.c b/games/battlestar/misc.c
index 1581671..45e9ec2 100644
--- a/games/battlestar/misc.c
+++ b/games/battlestar/misc.c
@@ -45,7 +45,7 @@ card(array, size) /* for beenthere, injuries */
int size;
{
const char *end = array + size;
- register int i = 0;
+ int i = 0;
while (array < end)
if (*array++)
@@ -57,7 +57,7 @@ int
ucard(array)
const unsigned int *array;
{
- register int j = 0, n;
+ int j = 0, n;
for (n = 0; n < NUMOFOBJECTS; n++)
if (testbit(array, n))
OpenPOWER on IntegriCloud