diff options
author | des <des@FreeBSD.org> | 2001-06-19 15:41:57 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2001-06-19 15:41:57 +0000 |
commit | 8e8983228c23a31fab165ccea0111506ec3df90a (patch) | |
tree | 78df927bdd9463d2fdb6e5aa99e078a0a536b8f9 /bin/dd | |
parent | fda44bcae38083716d5b4788689f3146651d11d0 (diff) | |
download | FreeBSD-src-8e8983228c23a31fab165ccea0111506ec3df90a.zip FreeBSD-src-8e8983228c23a31fab165ccea0111506ec3df90a.tar.gz |
Add more headers that are required with -fno-builtin (stdlib and strings)
Diffstat (limited to 'bin/dd')
-rw-r--r-- | bin/dd/misc.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/dd/misc.c b/bin/dd/misc.c index 8d75668..63c4e67 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" |