aboutsummaryrefslogtreecommitdiff
path: root/games/atc
diff options
context:
space:
mode:
authorJohn Birrell <jb@FreeBSD.org>1998-05-09 08:46:53 +0000
committerJohn Birrell <jb@FreeBSD.org>1998-05-09 08:46:53 +0000
commit9b8dda73322d11b1dea81939234775e9ac28b1ea (patch)
tree88e2f6a6538d1051ffb93b3bc6b21104f2a4a95c /games/atc
parent7c4f10b829d47a92b66ab6202149b8281616ad6b (diff)
downloadsrc-9b8dda73322d11b1dea81939234775e9ac28b1ea.tar.gz
src-9b8dda73322d11b1dea81939234775e9ac28b1ea.zip
Add #include string.h to get prototypes.
Notes
Notes: svn path=/head/; revision=35860
Diffstat (limited to 'games/atc')
-rw-r--r--games/atc/graphics.c1
-rw-r--r--games/atc/log.c1
-rw-r--r--games/atc/main.c1
-rw-r--r--games/atc/update.c1
4 files changed, 4 insertions, 0 deletions
diff --git a/games/atc/graphics.c b/games/atc/graphics.c
index 7503b26f427a..e7a34bf8de08 100644
--- a/games/atc/graphics.c
+++ b/games/atc/graphics.c
@@ -47,6 +47,7 @@
static char sccsid[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
+#include <string.h>
#include "include.h"
#ifdef SYSV
#include <errno.h>
diff --git a/games/atc/log.c b/games/atc/log.c
index 9206dc1ec6b0..f55bf567fe07 100644
--- a/games/atc/log.c
+++ b/games/atc/log.c
@@ -47,6 +47,7 @@
static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93";
#endif not lint
+#include <string.h>
#include "include.h"
#include "pathnames.h"
diff --git a/games/atc/main.c b/games/atc/main.c
index 4f4eddb3732c..a15653689526 100644
--- a/games/atc/main.c
+++ b/games/atc/main.c
@@ -53,6 +53,7 @@ static char copyright[] =
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93";
#endif /* not lint */
+#include <string.h>
#include "include.h"
#include "pathnames.h"
diff --git a/games/atc/update.c b/games/atc/update.c
index 5a83bbc16b68..4e9a5a414719 100644
--- a/games/atc/update.c
+++ b/games/atc/update.c
@@ -47,6 +47,7 @@
static char sccsid[] = "@(#)update.c 8.1 (Berkeley) 5/31/93";
#endif not lint
+#include <string.h>
#include "include.h"
update()