diff options
-rw-r--r-- | games/battlestar/com6.c | 8 | ||||
-rw-r--r-- | games/battlestar/externs.h | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/games/battlestar/com6.c b/games/battlestar/com6.c index 5b8b755f5e1..9c6dcfb3084 100644 --- a/games/battlestar/com6.c +++ b/games/battlestar/com6.c @@ -95,14 +95,6 @@ live() exit(0); } -/* - * sigh -- this program thinks "time" is an int. It's easier to not load - * <time.h> than try and fix it. - */ -#define _KERNEL -#include <sys/time.h> -#undef _KERNEL - post(ch) char ch; { diff --git a/games/battlestar/externs.h b/games/battlestar/externs.h index cb3513a3ea5..e9bb110bf7e 100644 --- a/games/battlestar/externs.h +++ b/games/battlestar/externs.h @@ -35,6 +35,14 @@ * @(#)externs.h 8.1 (Berkeley) 5/31/93 */ +/* + * sigh -- this program thinks "time" is an int. It's easier to not load + * <time.h> than try and fix it. + */ +#define _KERNEL +#include <sys/time.h> +#undef _KERNEL + #include <errno.h> #include <signal.h> #include <stdio.h> |