diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 10:41:14 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 10:41:14 +0000 |
commit | 47ccc071edc61fa61e27892c73a8a0645ac69dbb (patch) | |
tree | 5b3de53c671fc6df62d07e0091fae292feb439d6 /libc/sysdeps/linux/common | |
parent | 62f6efafe23368a27c2fc3a40fad3597f768603c (diff) |
Hide chmod, lockf*
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/chmod.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/chmod.c b/libc/sysdeps/linux/common/chmod.c index 631706672..bf368cf5e 100644 --- a/libc/sysdeps/linux/common/chmod.c +++ b/libc/sysdeps/linux/common/chmod.c @@ -13,7 +13,8 @@ #define __NR___syscall_chmod __NR_chmod static inline _syscall2(int, __syscall_chmod, const char *, path, __kernel_mode_t, mode); -int chmod(const char *path, mode_t mode) +int attribute_hidden __chmod(const char *path, mode_t mode) { return __syscall_chmod(path, mode); } +strong_alias(__chmod,chmod) |