diff options
Diffstat (limited to 'libc/sysdeps/linux/common/setgroups.c')
-rw-r--r-- | libc/sysdeps/linux/common/setgroups.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/setgroups.c b/libc/sysdeps/linux/common/setgroups.c index a41578d62..b767f6aa7 100644 --- a/libc/sysdeps/linux/common/setgroups.c +++ b/libc/sysdeps/linux/common/setgroups.c @@ -2,9 +2,9 @@ /* * setgroups() for uClibc * - * Copyright (C) 2000-2004 by Erik Andersen <andersen@codepoet.org> + * Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org> * - * GNU Library General Public License (LGPL) version 2 or later. + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include "syscalls.h" @@ -12,6 +12,8 @@ #include <unistd.h> #include <grp.h> +libc_hidden_proto(setgroups) + libc_hidden_proto(sysconf) #define __NR___syscall_setgroups __NR_setgroups @@ -47,5 +49,4 @@ ret_error: return i; } } -libc_hidden_proto(setgroups) libc_hidden_def(setgroups) |