diff options
author | Mark Murray <markm@FreeBSD.org> | 2002-01-22 17:32:53 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 2002-01-22 17:32:53 +0000 |
commit | 5567b258ebfb1a00cb9d07371894eae183e09a25 (patch) | |
tree | 4fa4107bd9dc143cbf75e44ad9d40c4184b8784e /lib/libc/gen/initgroups.c | |
parent | 7228268aaab0a8b611f372812bbde4799fb4b07b (diff) |
Notes
Diffstat (limited to 'lib/libc/gen/initgroups.c')
-rw-r--r-- | lib/libc/gen/initgroups.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lib/libc/gen/initgroups.c b/lib/libc/gen/initgroups.c index 3fc9bb2f4042..16ffb49e011c 100644 --- a/lib/libc/gen/initgroups.c +++ b/lib/libc/gen/initgroups.c @@ -31,14 +31,12 @@ * SUCH DAMAGE. */ +#include <sys/cdefs.h> +__FBSDID("$FreeBSD$"); + #if defined(LIBC_SCCS) && !defined(lint) -#if 0 static char sccsid[] = "@(#)initgroups.c 8.1 (Berkeley) 6/4/93"; -#else -static const char rcsid[] = - "$FreeBSD$"; #endif -#endif /* LIBC_SCCS and not lint */ #include <sys/param.h> @@ -51,7 +49,7 @@ static const char rcsid[] = int initgroups(uname, agroup) const char *uname; - int agroup; + gid_t agroup; { int groups[NGROUPS], ngroups; |