summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-05-09 09:39:46 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-05-09 09:39:46 +0000
commitea565b5141e461610f9d64f40c987a043b151756 (patch)
tree23c15363e977cdd19f79b0689edc627eea755f94
parenteb3846e9e5f8c667b6e2e03c0cb885595f8711d0 (diff)
Notes
-rw-r--r--games/battlestar/com4.c1
-rw-r--r--games/battlestar/fly.c1
-rw-r--r--games/battlestar/init.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/games/battlestar/com4.c b/games/battlestar/com4.c
index eac4cf9b8336..8a116641728f 100644
--- a/games/battlestar/com4.c
+++ b/games/battlestar/com4.c
@@ -35,6 +35,7 @@
static char sccsid[] = "@(#)com4.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
+#include <string.h>
#include "externs.h"
take(from)
diff --git a/games/battlestar/fly.c b/games/battlestar/fly.c
index 118ff165e861..5bc55e789652 100644
--- a/games/battlestar/fly.c
+++ b/games/battlestar/fly.c
@@ -38,6 +38,7 @@ static char sccsid[] = "@(#)fly.c 8.1 (Berkeley) 5/31/93";
#include "externs.h"
#undef UP
#include <curses.h>
+#include <string.h>
#define abs(a) ((a) < 0 ? -(a) : (a))
#define MIDR (LINES/2 - 1)
diff --git a/games/battlestar/init.c b/games/battlestar/init.c
index e4aa3d866394..a06ad3c22fbf 100644
--- a/games/battlestar/init.c
+++ b/games/battlestar/init.c
@@ -38,6 +38,7 @@ static char sccsid[] = "@(#)init.c 8.1 (Berkeley) 5/31/93";
#include <sys/types.h>
#include "externs.h"
#include <pwd.h>
+#include <string.h>
initialize(startup)
char startup;