diff options
author | Alexander Kabaev <kan@FreeBSD.org> | 2006-09-21 01:30:04 +0000 |
---|---|---|
committer | Alexander Kabaev <kan@FreeBSD.org> | 2006-09-21 01:30:04 +0000 |
commit | 63ed5a7e06f91ad8405765d6d5b6a6b84797927f (patch) | |
tree | 20f47f1435da8a96a1b2665399c06c43a22cf576 /lib/libncp/ncpl_file.c | |
parent | 1474f88f748e51ea9fee5e24fefa3180ed495bea (diff) |
Silence GCC4 warning.
strlen, strcmp live in <string.h> not <string.h>.
Notes
Notes:
svn path=/head/; revision=162486
Diffstat (limited to 'lib/libncp/ncpl_file.c')
-rw-r--r-- | lib/libncp/ncpl_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libncp/ncpl_file.c b/lib/libncp/ncpl_file.c index 2ffcc466a6ec..17edeb086fc1 100644 --- a/lib/libncp/ncpl_file.c +++ b/lib/libncp/ncpl_file.c @@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$"); #include <stdio.h> #include <fcntl.h> #include <unistd.h> -#include <strings.h> +#include <string.h> #include <netncp/ncp_lib.h> #include <netncp/ncp_file.h> |