aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGiorgos Keramidas <keramida@FreeBSD.org>2002-06-09 04:15:40 +0000
committerGiorgos Keramidas <keramida@FreeBSD.org>2002-06-09 04:15:40 +0000
commita7c1ac2f62292c0affa47a7d5c0b8e9207dc67d4 (patch)
tree311e093cf288d8624b25a89ed251e985fff3bd71 /bin
parent33c7d9aabadcc90ba077ce15f3f347555a637996 (diff)
downloadsrc-a7c1ac2f62292c0affa47a7d5c0b8e9207dc67d4.tar.gz
src-a7c1ac2f62292c0affa47a7d5c0b8e9207dc67d4.zip
Replace <strings.h> with <string.h>. No functions from the former are
used in this file, and strlen() needs to be prototyped by the latter, for this to compile without warnings. Reviewed by: mike
Notes
Notes: svn path=/head/; revision=98061
Diffstat (limited to 'bin')
-rw-r--r--bin/dd/misc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/dd/misc.c b/bin/dd/misc.c
index d59d52e3aea5..dcd68d56c894 100644
--- a/bin/dd/misc.c
+++ b/bin/dd/misc.c
@@ -49,7 +49,7 @@ static const char rcsid[] =
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
-#include <strings.h>
+#include <string.h>
#include <unistd.h>
#include "dd.h"