diff options
Diffstat (limited to 'libc/sysdeps/linux/common/chmod.c')
-rw-r--r-- | libc/sysdeps/linux/common/chmod.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/chmod.c b/libc/sysdeps/linux/common/chmod.c index 34a30a4b0..a4524ba1f 100644 --- a/libc/sysdeps/linux/common/chmod.c +++ b/libc/sysdeps/linux/common/chmod.c @@ -10,10 +10,10 @@ #include <sys/syscall.h> #include <sys/stat.h> -libc_hidden_proto(chmod) +/* libc_hidden_proto(chmod) */ #define __NR___syscall_chmod __NR_chmod -static __inline__ _syscall2(int, __syscall_chmod, const char *, path, __kernel_mode_t, mode); +static __inline__ _syscall2(int, __syscall_chmod, const char *, path, __kernel_mode_t, mode) int chmod(const char *path, mode_t mode) { |