diff options
| author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-06-19 15:41:57 +0000 |
|---|---|---|
| committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-06-19 15:41:57 +0000 |
| commit | 26f6b0fbe899c29f145963553ff5150602a352e8 (patch) | |
| tree | 78df927bdd9463d2fdb6e5aa99e078a0a536b8f9 | |
| parent | 05b6760d2a9e8b4f0bef25b6dbb6fd391f493e39 (diff) | |
Notes
| -rw-r--r-- | bin/cp/cp.c | 1 | ||||
| -rw-r--r-- | bin/cp/utils.c | 1 | ||||
| -rw-r--r-- | bin/dd/misc.c | 2 | ||||
| -rw-r--r-- | bin/sh/mail.c | 1 | ||||
| -rw-r--r-- | bin/sh/mksyntax.c | 1 |
5 files changed, 6 insertions, 0 deletions
diff --git a/bin/cp/cp.c b/bin/cp/cp.c index 3478c735b88f2..3fe4af4a8c66b 100644 --- a/bin/cp/cp.c +++ b/bin/cp/cp.c @@ -71,6 +71,7 @@ static const char rcsid[] = #include <fts.h> #include <limits.h> #include <stdio.h> +#include <stdlib.h> #include <string.h> #include <unistd.h> diff --git a/bin/cp/utils.c b/bin/cp/utils.c index 479550e1ea060..6f5ed4098f9bd 100644 --- a/bin/cp/utils.c +++ b/bin/cp/utils.c @@ -52,6 +52,7 @@ static const char rcsid[] = #include <fts.h> #include <limits.h> #include <stdio.h> +#include <stdlib.h> #include <sysexits.h> #include <unistd.h> diff --git a/bin/dd/misc.c b/bin/dd/misc.c index 8d756683e4340..63c4e678f1a37 100644 --- a/bin/dd/misc.c +++ b/bin/dd/misc.c @@ -48,6 +48,8 @@ static const char rcsid[] = #include <errno.h> #include <stdio.h> +#include <stdlib.h> +#include <strings.h> #include <unistd.h> #include "dd.h" diff --git a/bin/sh/mail.c b/bin/sh/mail.c index 826e89a31e8f4..540351548a68e 100644 --- a/bin/sh/mail.c +++ b/bin/sh/mail.c @@ -54,6 +54,7 @@ static const char rcsid[] = #include "error.h" #include <sys/types.h> #include <sys/stat.h> +#include <stdlib.h> #define MAXMBOXES 10 diff --git a/bin/sh/mksyntax.c b/bin/sh/mksyntax.c index 3f7f8cbfd63dc..aace57d1cea9f 100644 --- a/bin/sh/mksyntax.c +++ b/bin/sh/mksyntax.c @@ -53,6 +53,7 @@ static const char rcsid[] = */ #include <stdio.h> +#include <stdlib.h> #include <string.h> #include "parser.h" |
