aboutsummaryrefslogtreecommitdiff
path: root/games/battlestar
diff options
context:
space:
mode:
authorEivind Eklund <eivind@FreeBSD.org>1997-02-26 20:10:45 +0000
committerEivind Eklund <eivind@FreeBSD.org>1997-02-26 20:10:45 +0000
commit44b732f7dcead2aab6cb96e33c3bbbec313be111 (patch)
tree53a989cfee581ed8ef4e85423961afb217d254bf /games/battlestar
parent4f8197720fb02a55cf35eb03a7f614d21ce68dfe (diff)
Actually remove sys/time.h hack; fix typo.
Pointed out by: bde
Notes
Notes: svn path=/head/; revision=23139
Diffstat (limited to 'games/battlestar')
-rw-r--r--games/battlestar/com3.c2
-rw-r--r--games/battlestar/com6.c8
2 files changed, 1 insertions, 9 deletions
diff --git a/games/battlestar/com3.c b/games/battlestar/com3.c
index 1189eccbbd2a..619c43f2c4cf 100644
--- a/games/battlestar/com3.c
+++ b/games/battlestar/com3.c
@@ -278,7 +278,7 @@ shoot()
clearbit(location[position].objects,TIMER);
setbit(location[position].objects,DEADTIME);
}
- else puts("What old gtimer?");
+ else puts("What old timer?");
break;
case MAN:
if (testbit(location[position].objects,MAN)){
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c
index a6dc158172f6..146bb8c90665 100644
--- a/games/battlestar/com6.c
+++ b/games/battlestar/com6.c
@@ -89,15 +89,7 @@ live()
exit(0);
}
-/*
- * sigh -- this program thinks `clock' and `time' are ints. It's easier
- * to hack around this than to fix it properly.
- */
-#define clock not_our_clock
-#define time not_our_time
#include <sys/time.h>
-#undef clock
-#undef time
post(ch)
char ch;