diff options
author | Jim Meyering <jim@meyering.net> | 1999-03-09 16:07:16 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1999-03-09 16:07:16 +0000 |
commit | c057543e4713d43a6092d48ab38b00540efae21a (patch) | |
tree | bad48dbf6b837dabf6f3d4d8c9fcfb9f0568a1d9 /lib | |
parent | 7456d2a652d927c5f17c73a442eafd2e45e213a0 (diff) | |
download | coreutils-c057543e4713d43a6092d48ab38b00540efae21a.tar.xz |
protoize
Diffstat (limited to 'lib')
-rw-r--r-- | lib/getgroups.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/getgroups.c b/lib/getgroups.c index a72bddb5c..5a98fec97 100644 --- a/lib/getgroups.c +++ b/lib/getgroups.c @@ -1,5 +1,5 @@ /* provide consistent interface to getgroups for systems that don't allow N==0 - Copyright (C) 1996 Free Software Foundation, Inc. + Copyright (C) 1996, 1999 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 @@ -30,9 +30,7 @@ char *xmalloc (); provided function handle all others. */ int -getgroups (n, group) - size_t n; - GETGROUPS_T *group; +getgroups (size_t n, GETGROUPS_T *group) { int n_groups; GETGROUPS_T *gbuf; |