summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/getgrouplist.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-11-10 15:56:44 +1100
committerDarren Tucker <dtucker@zip.com.au>2005-11-10 15:56:44 +1100
commite5a2b5288dea7f17373d97f4e81972de6935ae07 (patch)
treeffa9ebe2ca8828ecef622a50c5c59cd9204a0ea6 /openbsd-compat/getgrouplist.c
parentb0288098c9e9c4753e8e9537051eef4b7f417585 (diff)
- (dtucker) [openbsd-compat/getgrouplist.c] Sync OpenBSD revs 1.10 - 1.2 (ANSI
prototypes, removal of "register").
Diffstat (limited to 'openbsd-compat/getgrouplist.c')
-rw-r--r--openbsd-compat/getgrouplist.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/openbsd-compat/getgrouplist.c b/openbsd-compat/getgrouplist.c
index 59c164f4..2a2b8878 100644
--- a/openbsd-compat/getgrouplist.c
+++ b/openbsd-compat/getgrouplist.c
@@ -1,5 +1,6 @@
/* OPENBSD ORIGINAL: lib/libc/gen/getgrouplist.c */
+/* $OpenBSD: getgrouplist.c,v 1.12 2005/08/08 08:05:34 espie Exp $ */
/*
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
@@ -33,10 +34,6 @@
#ifndef HAVE_GETGROUPLIST
-#if defined(LIBC_SCCS) && !defined(lint)
-static char rcsid[] = "$OpenBSD: getgrouplist.c,v 1.9 2003/06/25 21:16:47 deraadt Exp $";
-#endif /* LIBC_SCCS and not lint */
-
/*
* get credential
*/
@@ -46,14 +43,10 @@ static char rcsid[] = "$OpenBSD: getgrouplist.c,v 1.9 2003/06/25 21:16:47 deraad
#include <grp.h>
int
-getgrouplist(uname, agroup, groups, grpcnt)
- const char *uname;
- gid_t agroup;
- register gid_t *groups;
- int *grpcnt;
+getgrouplist(const char *uname, gid_t agroup, gid_t *groups, int *grpcnt)
{
- register struct group *grp;
- register int i, ngroups;
+ struct group *grp;
+ int i, ngroups;
int ret, maxgroups;
int bail;