diff options
author | jb <jb@FreeBSD.org> | 1998-02-20 07:48:36 +0000 |
---|---|---|
committer | jb <jb@FreeBSD.org> | 1998-02-20 07:48:36 +0000 |
commit | 7dedbef2efc087b86199ee002f14acaf9b70f118 (patch) | |
tree | 53615549e44885db61fb4b64e6e38a11d6d1c1a9 /contrib | |
parent | d4dd404bc1c80aaaaf1b057611f4d601e1e7b75c (diff) | |
download | FreeBSD-src-7dedbef2efc087b86199ee002f14acaf9b70f118.zip FreeBSD-src-7dedbef2efc087b86199ee002f14acaf9b70f118.tar.gz |
Add #include <string.h> to get prototypes.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/global/gtags/gtags.c | 1 | ||||
-rw-r--r-- | contrib/global/lib/find.c | 1 | ||||
-rw-r--r-- | contrib/global/lib/getdbpath.c | 1 | ||||
-rw-r--r-- | contrib/global/lib/makepath.c | 1 | ||||
-rw-r--r-- | contrib/global/lib/mgets.c | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/contrib/global/gtags/gtags.c b/contrib/global/gtags/gtags.c index 288c16c..bfd9aba 100644 --- a/contrib/global/gtags/gtags.c +++ b/contrib/global/gtags/gtags.c @@ -37,6 +37,7 @@ #include <ctype.h> #include <stdio.h> #include <stdlib.h> +#include <string.h> #include <time.h> #include <unistd.h> diff --git a/contrib/global/lib/find.c b/contrib/global/lib/find.c index 6203e00..10a9bf1 100644 --- a/contrib/global/lib/find.c +++ b/contrib/global/lib/find.c @@ -32,6 +32,7 @@ * */ #include <stdio.h> +#include <string.h> #include <sys/types.h> #include <regex.h> #include <sys/param.h> diff --git a/contrib/global/lib/getdbpath.c b/contrib/global/lib/getdbpath.c index 1e4e7cf..73f1a4f 100644 --- a/contrib/global/lib/getdbpath.c +++ b/contrib/global/lib/getdbpath.c @@ -37,6 +37,7 @@ #include <unistd.h> #include <stdlib.h> +#include <string.h> #include "die.h" #include "getdbpath.h" diff --git a/contrib/global/lib/makepath.c b/contrib/global/lib/makepath.c index ba00ecf..7efba18 100644 --- a/contrib/global/lib/makepath.c +++ b/contrib/global/lib/makepath.c @@ -31,6 +31,7 @@ * makepath.c 20-Oct-97 * */ +#include <string.h> #include <sys/param.h> #include "makepath.h" /* diff --git a/contrib/global/lib/mgets.c b/contrib/global/lib/mgets.c index 2bc6099..b30cae6 100644 --- a/contrib/global/lib/mgets.c +++ b/contrib/global/lib/mgets.c @@ -33,6 +33,7 @@ */ #include <stdio.h> #include <stdlib.h> +#include <string.h> #include "mgets.h" #include "die.h" |