diff options
author | imp <imp@FreeBSD.org> | 2009-02-19 19:45:49 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-02-19 19:45:49 +0000 |
commit | 425df8ca7238a7024c9e22f6a91e923fd4bac798 (patch) | |
tree | 2832072dcca967fd19110152d041ac84fe676726 /usr.sbin/lmcconfig | |
parent | a24b268e2bfee045dc6f97db89faf9258c6fd055 (diff) | |
download | FreeBSD-src-425df8ca7238a7024c9e22f6a91e923fd4bac798.zip FreeBSD-src-425df8ca7238a7024c9e22f6a91e923fd4bac798.tar.gz |
Include string.h for strncpy prototype
Include strings.h for bcopy and bzero prototype
Diffstat (limited to 'usr.sbin/lmcconfig')
-rw-r--r-- | usr.sbin/lmcconfig/lmcconfig.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/usr.sbin/lmcconfig/lmcconfig.c b/usr.sbin/lmcconfig/lmcconfig.c index f94c4d1..1fe63f7 100644 --- a/usr.sbin/lmcconfig/lmcconfig.c +++ b/usr.sbin/lmcconfig/lmcconfig.c @@ -68,6 +68,8 @@ #include <stdio.h> #include <errno.h> #include <stdlib.h> +#include <string.h> +#include <strings.h> #include <unistd.h> #if defined(NETGRAPH) # include <netgraph.h> |