diff options
author | Jim Meyering <jim@meyering.net> | 1997-12-28 10:41:01 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-12-28 10:41:01 +0000 |
commit | ce9923ab87c4af9681af714baa9c6483af70cb9e (patch) | |
tree | a9e231573e3e70e9e7e2973fb1ea0624e7ba0456 /lib | |
parent | 6d02c3708154f66229d33214e7a770fcc8cb8fae (diff) | |
download | coreutils-ce9923ab87c4af9681af714baa9c6483af70cb9e.tar.xz |
Use ANSI syntax, not K&R.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/group-member.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/group-member.c b/lib/group-member.c index 4ca8cb51a..065f4d8bb 100644 --- a/lib/group-member.c +++ b/lib/group-member.c @@ -1,5 +1,5 @@ /* group-member.c -- determine whether group id is in calling user's group list - Copyright (C) 1994 Free Software Foundation, Inc. + Copyright (C) 1994, 1997 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -44,15 +44,14 @@ struct group_info #ifdef HAVE_GETGROUPS static void -free_group_info (g) - struct group_info *g; +free_group_info (struct group_info *g) { free (g->group); free (g); } static struct group_info * -get_group_info () +get_group_info (void) { int n_groups; int n_group_slots; @@ -96,8 +95,7 @@ get_group_info () either of the current or effective group IDs. */ int -group_member (gid) - gid_t gid; +group_member (gid_t gid) { #ifndef HAVE_GETGROUPS return ((gid == getgid ()) || (gid == getegid ())); |