diff options
author | jb <jb@FreeBSD.org> | 1998-05-09 10:59:57 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-09 10:59:57 +0000 |
commit | a0da8cd03483b4b7a999a28d28ec040c125da69b (patch) | |
tree | 2496672fa4fd60bd631c4252d86d5e624d00b870 /games | |
parent | 05e443dab403732dd66ad30cfb3029a489e3a53b (diff) | |
download | FreeBSD-src-a0da8cd03483b4b7a999a28d28ec040c125da69b.zip FreeBSD-src-a0da8cd03483b4b7a999a28d28ec040c125da69b.tar.gz |
Add #include string.h to get prototypes.
Diffstat (limited to 'games')
-rw-r--r-- | games/phantasia/interplayer.c | 1 | ||||
-rw-r--r-- | games/phantasia/io.c | 1 | ||||
-rw-r--r-- | games/phantasia/misc.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/games/phantasia/interplayer.c b/games/phantasia/interplayer.c index 7c023d9..542674c 100644 --- a/games/phantasia/interplayer.c +++ b/games/phantasia/interplayer.c @@ -2,6 +2,7 @@ * interplayer.c - player to player routines for Phantasia */ +#include <string.h> #include "include.h" /************************************************************************ diff --git a/games/phantasia/io.c b/games/phantasia/io.c index 7736531..42f5a1d 100644 --- a/games/phantasia/io.c +++ b/games/phantasia/io.c @@ -2,6 +2,7 @@ * io.c - input/output routines for Phantasia */ +#include <string.h> #include "include.h" /************************************************************************ diff --git a/games/phantasia/misc.c b/games/phantasia/misc.c index 133bdfb..bcc1f85 100644 --- a/games/phantasia/misc.c +++ b/games/phantasia/misc.c @@ -2,6 +2,7 @@ * misc.c Phantasia miscellaneous support routines */ +#include <string.h> #include "include.h" |