diff options
author | jb <jb@FreeBSD.org> | 1998-05-09 08:46:53 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-05-09 08:46:53 +0000 |
commit | f7925067dfdf7526924abb40d5d1ae00cebd968d (patch) | |
tree | 141334597ec959012ed0257893a15c5ddd0ead95 /games/adventure | |
parent | 2289cf3713e5c2a45d9e037ee71385acc41aeb73 (diff) | |
download | FreeBSD-src-f7925067dfdf7526924abb40d5d1ae00cebd968d.zip FreeBSD-src-f7925067dfdf7526924abb40d5d1ae00cebd968d.tar.gz |
Add #include string.h to get prototypes.
Diffstat (limited to 'games/adventure')
-rw-r--r-- | games/adventure/io.c | 1 | ||||
-rw-r--r-- | games/adventure/wizard.c | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/games/adventure/io.c b/games/adventure/io.c index 0f7bd3f..df1236b 100644 --- a/games/adventure/io.c +++ b/games/adventure/io.c @@ -45,6 +45,7 @@ static char sccsid[] = "@(#)io.c 8.1 (Berkeley) 5/31/93"; #include "hdr.h" #include <stdio.h> #include <stdlib.h> +#include <string.h> getin(wrd1,wrd2) /* get command from user */ diff --git a/games/adventure/wizard.c b/games/adventure/wizard.c index a4d40e0..666e0f0 100644 --- a/games/adventure/wizard.c +++ b/games/adventure/wizard.c @@ -45,6 +45,7 @@ static char sccsid[] = "@(#)wizard.c 8.1 (Berkeley) 6/2/93"; #include <sys/types.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <time.h> # include "hdr.h" |