diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-27 07:32:35 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-01-27 07:32:35 +0000 |
commit | 2dcd7b4fae8288ffcc0cdb21441ba7fc528c149a (patch) | |
tree | d10af01c6c63cae8b703e317aea536f25c0d6685 /games/battlestar | |
parent | c05597ef1fdad686ddead09f9558f305a4dacc11 (diff) |
Fallout from signal.h's inclusion of sys/time.h...
Diffstat (limited to 'games/battlestar')
-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> |