diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-15 10:09:14 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-15 10:09:14 +0000 |
commit | 073a28f4d8ca1c9f8dbf945284e5f0ec6830d1b9 (patch) | |
tree | bfdc2c10cabe05e0a53242f7967bc806fdf7eb27 /lib/libc/gen/getpwent.c | |
parent | 3d910cc7eeaa72e04d3fc80ea16c51c19869701e (diff) |
Add a couple of syscalls; bring more prototypes into scope
Diffstat (limited to 'lib/libc/gen/getpwent.c')
-rw-r--r-- | lib/libc/gen/getpwent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/gen/getpwent.c b/lib/libc/gen/getpwent.c index dc7d07cc809..8076fdb6e62 100644 --- a/lib/libc/gen/getpwent.c +++ b/lib/libc/gen/getpwent.c @@ -33,7 +33,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getpwent.c,v 1.4 1996/09/15 09:31:02 tholo Exp $"; +static char rcsid[] = "$OpenBSD: getpwent.c,v 1.5 1996/09/15 10:09:11 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -54,6 +54,7 @@ static char rcsid[] = "$OpenBSD: getpwent.c,v 1.4 1996/09/15 09:31:02 tholo Exp #include <rpc/rpc.h> #include <rpcsvc/yp.h> #include <rpcsvc/ypclnt.h> +#include "ypinternal.h" #endif static struct passwd _pw_passwd; /* password structure */ |