diff options
Diffstat (limited to 'posix/getgroups.c')
-rw-r--r-- | posix/getgroups.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/posix/getgroups.c b/posix/getgroups.c index d828812..49dc5b3 100644 --- a/posix/getgroups.c +++ b/posix/getgroups.c @@ -26,9 +26,7 @@ the calling process is in. Otherwise, fill in the group IDs of its supplementary groups in LIST and return the number written. */ int -__getgroups (size, list) - int size; - gid_t *list; +__getgroups (int size, gid_t *list) { #if defined (NGROUPS_MAX) && NGROUPS_MAX == 0 /* The system has no supplementary groups. */ |