diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-27 18:21:33 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-11-27 18:21:33 +0000 |
commit | 28c8634afdc1fa236679b49ab0d5a019379c6db1 (patch) | |
tree | fda9d6e124a32799b07247f8d38d0cc8f963cd4e /libc/sysdeps/linux/common/setgroups.c | |
parent | eb38b2d34c32ed3089e2bf8935219a57f84ce7b3 (diff) | |
download | uClibc-alpine-28c8634afdc1fa236679b49ab0d5a019379c6db1.tar.bz2 uClibc-alpine-28c8634afdc1fa236679b49ab0d5a019379c6db1.tar.xz |
Synch with trunk @ 24165
Step 17: libc_hidden_proto removal (almost all).
and other minor changes (inline keyword, extra character)
Diffstat (limited to 'libc/sysdeps/linux/common/setgroups.c')
-rw-r--r-- | libc/sysdeps/linux/common/setgroups.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/sysdeps/linux/common/setgroups.c b/libc/sysdeps/linux/common/setgroups.c index 3c77250d0..d7a94944c 100644 --- a/libc/sysdeps/linux/common/setgroups.c +++ b/libc/sysdeps/linux/common/setgroups.c @@ -14,23 +14,23 @@ #ifdef __USE_BSD -libc_hidden_proto(setgroups) +/* libc_hidden_proto(setgroups) */ #if defined(__NR_setgroups32) # undef __NR_setgroups # define __NR_setgroups __NR_setgroups32 -_syscall2(int, setgroups, size_t, size, const gid_t *, list); +_syscall2(int, setgroups, size_t, size, const gid_t *, list) #elif __WORDSIZE == 64 -_syscall2(int, setgroups, size_t, size, const gid_t *, list); +_syscall2(int, setgroups, size_t, size, const gid_t *, list) #else -libc_hidden_proto(sysconf) +/* libc_hidden_proto(sysconf) */ #define __NR___syscall_setgroups __NR_setgroups static __inline__ _syscall2(int, __syscall_setgroups, - size_t, size, const __kernel_gid_t *, list); + size_t, size, const __kernel_gid_t *, list) int setgroups(size_t size, const gid_t *groups) { |