diff options
author | des <des@FreeBSD.org> | 2001-06-21 12:10:35 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-06-21 12:10:35 +0000 |
commit | dc801f8230a60549dccdfbbdf2a489fc1bdd24e9 (patch) | |
tree | dac1c40093e6fd52ac911b1d0b3988152a3c93f6 /games/adventure | |
parent | 687340bf5dad00341bb609926e06c73d7369f622 (diff) | |
download | FreeBSD-src-dc801f8230a60549dccdfbbdf2a489fc1bdd24e9.zip FreeBSD-src-dc801f8230a60549dccdfbbdf2a489fc1bdd24e9.tar.gz |
More -fno-builtin failures.
Diffstat (limited to 'games/adventure')
-rw-r--r-- | games/adventure/done.c | 1 | ||||
-rw-r--r-- | games/adventure/main.c | 1 | ||||
-rw-r--r-- | games/adventure/subr.c | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/games/adventure/done.c b/games/adventure/done.c index 3dd013a..f769613 100644 --- a/games/adventure/done.c +++ b/games/adventure/done.c @@ -47,6 +47,7 @@ static const char rcsid[] = /* Re-coding of advent in C: termination routines */ #include <stdio.h> +#include <stdlib.h> #include "hdr.h" int diff --git a/games/adventure/main.c b/games/adventure/main.c index 8b21937..5b67d7b 100644 --- a/games/adventure/main.c +++ b/games/adventure/main.c @@ -57,6 +57,7 @@ static const char rcsid[] = #include <sys/types.h> #include <signal.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> #include "hdr.h" diff --git a/games/adventure/subr.c b/games/adventure/subr.c index 6bbb57e..d147412 100644 --- a/games/adventure/subr.c +++ b/games/adventure/subr.c @@ -47,6 +47,7 @@ static const char rcsid[] = /* Re-coding of advent in C: subroutines from main */ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "hdr.h" |