diff options
| -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 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; |
