summaryrefslogtreecommitdiff
path: root/lib/libc
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>2002-02-01 23:16:39 +0000
committerBruce Evans <bde@FreeBSD.org>2002-02-01 23:16:39 +0000
commiteb0a30f4c1fb0c380e48a946c9a50c1d277fa38f (patch)
treedff666c5a5ab0df4b5ae32863fc6b4203722ebd6 /lib/libc
parent19976ce3a6550a946518bcbe5c71911e3114e943 (diff)
Notes
Diffstat (limited to 'lib/libc')
-rw-r--r--lib/libc/gen/getgrouplist.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/lib/libc/gen/getgrouplist.c b/lib/libc/gen/getgrouplist.c
index 5817feb97512..7e15bb81252a 100644
--- a/lib/libc/gen/getgrouplist.c
+++ b/lib/libc/gen/getgrouplist.c
@@ -31,9 +31,12 @@
* SUCH DAMAGE.
*/
+#if 0
#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)getgrouplist.c 8.2 (Berkeley) 12/8/94";
-#endif /* LIBC_SCCS and not lint */$
+#endif /* LIBC_SCCS and not lint */
+#endif
+
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
@@ -52,8 +55,7 @@ getgrouplist(uname, agroup, groups, grpcnt)
int *grpcnt;
{
struct group *grp;
- int i, ngroups;
- int ret, maxgroups;
+ int i, maxgroups, ngroups, ret;
ret = 0;
ngroups = 0;