From ea565b5141e461610f9d64f40c987a043b151756 Mon Sep 17 00:00:00 2001 From: John Birrell Date: Sat, 9 May 1998 09:39:46 +0000 Subject: [PATCH] Add #include string.h to get prototypes. --- games/battlestar/com4.c | 1 + games/battlestar/fly.c | 1 + games/battlestar/init.c | 1 + 3 files changed, 3 insertions(+) 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 #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 +#include #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 #include "externs.h" #include +#include initialize(startup) char startup;