diff options
Diffstat (limited to 'libc/sysdeps/linux/common/chown.c')
-rw-r--r-- | libc/sysdeps/linux/common/chown.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libc/sysdeps/linux/common/chown.c b/libc/sysdeps/linux/common/chown.c index 27b89a3f4..2e7784a0c 100644 --- a/libc/sysdeps/linux/common/chown.c +++ b/libc/sysdeps/linux/common/chown.c @@ -11,7 +11,7 @@ #include <unistd.h> #include <bits/wordsize.h> -libc_hidden_proto(chown) +/* libc_hidden_proto(chown) */ #if (__WORDSIZE == 32 && defined(__NR_chown32)) || __WORDSIZE == 64 # ifdef __NR_chown32 @@ -19,13 +19,13 @@ libc_hidden_proto(chown) # define __NR_chown __NR_chown32 # endif -_syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group); +_syscall3(int, chown, const char *, path, uid_t, owner, gid_t, group) #else # define __NR___syscall_chown __NR_chown static __inline__ _syscall3(int, __syscall_chown, const char *, path, - __kernel_uid_t, owner, __kernel_gid_t, group); + __kernel_uid_t, owner, __kernel_gid_t, group) int chown(const char *path, uid_t owner, gid_t group) { |