diff options
author | markm <markm@FreeBSD.org> | 1997-09-28 08:46:12 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-09-28 08:46:12 +0000 |
commit | 9a65690bbfef5ffb763f038713e5be5aee18fe55 (patch) | |
tree | 053f632e3490f48a0a3293ee8abb005fee28efcc /usr.bin | |
parent | 818c4db845441049937e22f777f79cc9b775e027 (diff) | |
download | FreeBSD-src-9a65690bbfef5ffb763f038713e5be5aee18fe55.zip FreeBSD-src-9a65690bbfef5ffb763f038713e5be5aee18fe55.tar.gz |
Quieten -Wall.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/chpass/pw_copy.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/chpass/pw_copy.c b/usr.bin/chpass/pw_copy.c index fa77f05..73e2da2 100644 --- a/usr.bin/chpass/pw_copy.c +++ b/usr.bin/chpass/pw_copy.c @@ -32,7 +32,7 @@ */ #ifndef lint -static char sccsid[] = "@(#)pw_copy.c 8.4 (Berkeley) 4/2/94"; +static const char sccsid[] = "@(#)pw_copy.c 8.4 (Berkeley) 4/2/94"; #endif /* not lint */ /* @@ -44,6 +44,7 @@ static char sccsid[] = "@(#)pw_copy.c 8.4 (Berkeley) 4/2/94"; #include <pwd.h> #include <stdio.h> #include <string.h> +#include <unistd.h> #include <pw_util.h> #include "pw_copy.h" |