summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--adventure/init.c6
-rw-r--r--arithmetic/arithmetic.c5
-rw-r--r--battlestar/extern.h4
-rw-r--r--gomoku/main.c5
4 files changed, 13 insertions, 7 deletions
diff --git a/adventure/init.c b/adventure/init.c
index 8b2252cc..b2089eb3 100644
--- a/adventure/init.c
+++ b/adventure/init.c
@@ -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"
diff --git a/arithmetic/arithmetic.c b/arithmetic/arithmetic.c
index 29ffcb99..3150717e 100644
--- a/arithmetic/arithmetic.c
+++ b/arithmetic/arithmetic.c
@@ -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));
diff --git a/battlestar/extern.h b/battlestar/extern.h
index df79ccdc..19e8b310 100644
--- a/battlestar/extern.h
+++ b/battlestar/extern.h
@@ -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>
diff --git a/gomoku/main.c b/gomoku/main.c
index 9d56e26b..301812c2 100644
--- a/gomoku/main.c
+++ b/gomoku/main.c
@@ -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"