diff options
author | jb <jb@FreeBSD.org> | 1998-05-09 09:39:46 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-09 09:39:46 +0000 |
commit | 88c50b200adc9431a2204fb3e5b24f92ff93b0e9 (patch) | |
tree | 9236a645320edaaba10450bca42fcf72093bf6c8 /games/battlestar | |
parent | 85a011c31affd90a1a5206c60a19e859f6e2c4d7 (diff) | |
download | FreeBSD-src-88c50b200adc9431a2204fb3e5b24f92ff93b0e9.zip FreeBSD-src-88c50b200adc9431a2204fb3e5b24f92ff93b0e9.tar.gz |
Add #include string.h to get prototypes.
Diffstat (limited to 'games/battlestar')
-rw-r--r-- | games/battlestar/com4.c | 1 | ||||
-rw-r--r-- | games/battlestar/fly.c | 1 | ||||
-rw-r--r-- | games/battlestar/init.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/games/battlestar/com4.c b/games/battlestar/com4.c index eac4cf9..8a11664 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 118ff16..5bc55e7 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 e4aa3d8..a06ad3c 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; |