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/atc | |
parent | 2289cf3713e5c2a45d9e037ee71385acc41aeb73 (diff) | |
download | FreeBSD-src-f7925067dfdf7526924abb40d5d1ae00cebd968d.zip FreeBSD-src-f7925067dfdf7526924abb40d5d1ae00cebd968d.tar.gz |
Add #include string.h to get prototypes.
Diffstat (limited to 'games/atc')
-rw-r--r-- | games/atc/graphics.c | 1 | ||||
-rw-r--r-- | games/atc/log.c | 1 | ||||
-rw-r--r-- | games/atc/main.c | 1 | ||||
-rw-r--r-- | games/atc/update.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/games/atc/graphics.c b/games/atc/graphics.c index 7503b26..e7a34bf 100644 --- a/games/atc/graphics.c +++ b/games/atc/graphics.c @@ -47,6 +47,7 @@ static char sccsid[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93"; #endif /* not lint */ +#include <string.h> #include "include.h" #ifdef SYSV #include <errno.h> diff --git a/games/atc/log.c b/games/atc/log.c index 9206dc1..f55bf56 100644 --- a/games/atc/log.c +++ b/games/atc/log.c @@ -47,6 +47,7 @@ static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93"; #endif not lint +#include <string.h> #include "include.h" #include "pathnames.h" diff --git a/games/atc/main.c b/games/atc/main.c index 4f4eddb..a156536 100644 --- a/games/atc/main.c +++ b/games/atc/main.c @@ -53,6 +53,7 @@ static char copyright[] = static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 5/31/93"; #endif /* not lint */ +#include <string.h> #include "include.h" #include "pathnames.h" diff --git a/games/atc/update.c b/games/atc/update.c index 5a83bbc..4e9a5a4 100644 --- a/games/atc/update.c +++ b/games/atc/update.c @@ -47,6 +47,7 @@ static char sccsid[] = "@(#)update.c 8.1 (Berkeley) 5/31/93"; #endif not lint +#include <string.h> #include "include.h" update() |