diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-24 21:07:05 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-11-24 21:07:05 +0000 |
commit | 214a094a255867e71996b1cf6ca03fede69c93ba (patch) | |
tree | 0445c43eaee8d485913da7d4aba68d8a5b2a8ece /usr.bin/passwd | |
parent | b7866de6510d657d788b565e72a52d209c4afb10 (diff) |
Include err.h and util.h
Diffstat (limited to 'usr.bin/passwd')
-rw-r--r-- | usr.bin/passwd/pwd_check.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/passwd/pwd_check.c b/usr.bin/passwd/pwd_check.c index 9b902adb172..7898774f4e2 100644 --- a/usr.bin/passwd/pwd_check.c +++ b/usr.bin/passwd/pwd_check.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pwd_check.c,v 1.2 2000/11/24 20:50:20 millert Exp $ */ +/* $OpenBSD: pwd_check.c,v 1.3 2000/11/24 21:07:04 millert Exp $ */ /* * Copyright 2000 Niels Provos <provos@citi.umich.edu> * All rights reserved. @@ -38,10 +38,12 @@ #include <unistd.h> #include <limits.h> #include <errno.h> +#include <err.h> #include <regex.h> #include <grp.h> #include <paths.h> #include <pwd.h> +#include <util.h> struct pattern { char *match; |