]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
change includes to fix compiler warning
authorperry <perry@NetBSD.org>
Tue, 3 Feb 1998 04:55:59 +0000 (04:55 +0000)
committerperry <perry@NetBSD.org>
Tue, 3 Feb 1998 04:55:59 +0000 (04:55 +0000)
adventure/init.c
arithmetic/arithmetic.c
battlestar/extern.h
gomoku/main.c

index 8b2252ccc319fb7974aeddbfcfb62bb51a2f1c76..b2089eb3d8accdf97f33142430584557478eac0c 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: init.c,v 1.7 1997/10/11 01:53:28 lukem Exp $   */
+/*     $NetBSD: init.c,v 1.8 1998/02/03 05:32:13 perry Exp $   */
 
 /*-
  * Copyright (c) 1993
@@ -43,7 +43,7 @@
 #if 0
 static char sccsid[] = "@(#)init.c     8.1 (Berkeley) 6/2/93";
 #else
-__RCSID("$NetBSD: init.c,v 1.7 1997/10/11 01:53:28 lukem Exp $");
+__RCSID("$NetBSD: init.c,v 1.8 1998/02/03 05:32:13 perry Exp $");
 #endif
 #endif /* not lint */
 
@@ -53,7 +53,9 @@ __RCSID("$NetBSD: init.c,v 1.7 1997/10/11 01:53:28 lukem Exp $");
 #include <signal.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <time.h>
 #include <unistd.h>
+
 #include "hdr.h"
 #include "extern.h"
 
index 29ffcb9949d60e7a40bd946792e8f8f3cb406c77..3150717e03f1f628b559059bb6005cdbd33bb62f 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: arithmetic.c,v 1.9 1997/10/15 08:53:24 is Exp $        */
+/*     $NetBSD: arithmetic.c,v 1.10 1998/02/03 05:33:32 perry Exp $    */
 
 /*
  * Copyright (c) 1989, 1993
@@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1989, 1993\n\
 #if 0
 static char sccsid[] = "@(#)arithmetic.c       8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: arithmetic.c,v 1.9 1997/10/15 08:53:24 is Exp $");
+__RCSID("$NetBSD: arithmetic.c,v 1.10 1998/02/03 05:33:32 perry Exp $");
 #endif
 #endif /* not lint */
 
@@ -86,6 +86,7 @@ __RCSID("$NetBSD: arithmetic.c,v 1.9 1997/10/15 08:53:24 is Exp $");
 #include <stdlib.h>
 #include <string.h>
 #include <time.h>
+#include <unistd.h>
 
 int    getrandom __P((int, int, int));
 void   intr __P((int));
index df79ccdc17b75f0f165856db315ebcc3034fd05e..19e8b310529b518a1ba47317cc929cb33ec51994 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: extern.h,v 1.6 1997/10/11 02:07:18 lukem Exp $ */
+/*     $NetBSD: extern.h,v 1.7 1998/02/03 05:39:25 perry Exp $ */
 
 /*
  * Copyright (c) 1983, 1993
@@ -35,6 +35,8 @@
  *     @(#)externs.h   8.1 (Berkeley) 5/31/93
  */
 
+#include <sys/time.h>
+
 #include <ctype.h>
 #include <err.h>
 #include <pwd.h>
index 9d56e26bf16332e73df947a19d2f70e94caf0859..301812c291495c8000452e9ef729bbb197792461 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: main.c,v 1.4 1997/10/10 13:36:04 lukem Exp $   */
+/*     $NetBSD: main.c,v 1.5 1998/02/03 05:40:45 perry Exp $   */
 
 /*
  * Copyright (c) 1994
@@ -46,7 +46,7 @@ __COPYRIGHT("@(#) Copyright (c) 1994\n\
 #if 0
 static char sccsid[] = "@(#)main.c     8.4 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: main.c,v 1.4 1997/10/10 13:36:04 lukem Exp $");
+__RCSID("$NetBSD: main.c,v 1.5 1998/02/03 05:40:45 perry Exp $");
 #endif
 #endif /* not lint */
 
@@ -55,6 +55,7 @@ __RCSID("$NetBSD: main.c,v 1.4 1997/10/10 13:36:04 lukem Exp $");
 #include <signal.h>
 #include <stdlib.h>
 #include <string.h>
+#include <time.h>
 #include <unistd.h>
 
 #include "gomoku.h"