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/getgrent.c | |
parent | 3d910cc7eeaa72e04d3fc80ea16c51c19869701e (diff) |
Add a couple of syscalls; bring more prototypes into scope
Diffstat (limited to 'lib/libc/gen/getgrent.c')
-rw-r--r-- | lib/libc/gen/getgrent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/gen/getgrent.c b/lib/libc/gen/getgrent.c index fb63c7bd9b2..cc67b8196e9 100644 --- a/lib/libc/gen/getgrent.c +++ b/lib/libc/gen/getgrent.c @@ -33,10 +33,11 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: getgrent.c,v 1.4 1996/08/19 08:23:29 tholo Exp $"; +static char rcsid[] = "$OpenBSD: getgrent.c,v 1.5 1996/09/15 10:09:10 tholo Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> +#include <sys/param.h> #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -45,6 +46,7 @@ static char rcsid[] = "$OpenBSD: getgrent.c,v 1.4 1996/08/19 08:23:29 tholo Exp #include <rpc/rpc.h> #include <rpcsvc/yp.h> #include <rpcsvc/ypclnt.h> +#include "ypinternal.h" #endif static FILE *_gr_fp; |