Fallout from signal.h's inclusion of sys/time.h...
authormillert <millert@openbsd.org>
Mon, 27 Jan 1997 07:32:33 +0000 (07:32 +0000)
committermillert <millert@openbsd.org>
Mon, 27 Jan 1997 07:32:33 +0000 (07:32 +0000)
games/battlestar/com6.c
games/battlestar/externs.h

index 5b8b755..9c6dcfb 100644 (file)
@@ -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;
 {
index cb3513a..e9bb110 100644 (file)
  *     @(#)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>