diff options
author | stefanf <stefanf@FreeBSD.org> | 2004-05-30 08:59:10 +0000 |
---|---|---|
committer | stefanf <stefanf@FreeBSD.org> | 2004-05-30 08:59:10 +0000 |
commit | dc3d5635fc39d5b5141e40c2ac69a1f0a5c3ad31 (patch) | |
tree | 36243a4b347219d76e24933d6f2762ad4c1b3147 /usr.sbin/fdwrite | |
parent | 1fc8f1cfd5b55bf0fe2561f7176ec49589c63474 (diff) | |
download | FreeBSD-src-dc3d5635fc39d5b5141e40c2ac69a1f0a5c3ad31.zip FreeBSD-src-dc3d5635fc39d5b5141e40c2ac69a1f0a5c3ad31.tar.gz |
Include <string.h> rather than <strings.h> for string function prototypes.
Approved by: das (mentor)
Diffstat (limited to 'usr.sbin/fdwrite')
-rw-r--r-- | usr.sbin/fdwrite/fdwrite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/fdwrite/fdwrite.c b/usr.sbin/fdwrite/fdwrite.c index 8a9ef34..b3ffb6e 100644 --- a/usr.sbin/fdwrite/fdwrite.c +++ b/usr.sbin/fdwrite/fdwrite.c @@ -16,7 +16,7 @@ #include <paths.h> #include <stdio.h> #include <stdlib.h> -#include <strings.h> +#include <string.h> #include <unistd.h> #include <sys/fdcio.h> |