diff options
Diffstat (limited to 'sysdeps/stub/getgroups.c')
-rw-r--r-- | sysdeps/stub/getgroups.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sysdeps/stub/getgroups.c b/sysdeps/stub/getgroups.c index f98d966346..7d766d7639 100644 --- a/sysdeps/stub/getgroups.c +++ b/sysdeps/stub/getgroups.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1992, 1995 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1992, 1995, 1996 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,7 +16,6 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <ansidecl.h> #include <errno.h> #include <stddef.h> #include <unistd.h> @@ -28,14 +27,16 @@ Cambridge, MA 02139, USA. */ the calling process is in. Otherwise, fill in the group IDs of its supplementary groups in LIST and return the number written. */ int -DEFUN(__getgroups, (size, list), int size AND gid_t *list) +__getgroups (size, list) + int size; + gid_t *list; { #if defined (NGROUPS_MAX) && NGROUPS_MAX == 0 /* The system has no supplementary groups. */ return 0; #endif - errno = ENOSYS; + __set_errno (ENOSYS); return -1; } |