summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/chdir.c
diff options
context:
space:
mode:
authorPeter S. Mazinger <ps.m@gmx.net>2005-12-08 14:11:18 +0000
committerPeter S. Mazinger <ps.m@gmx.net>2005-12-08 14:11:18 +0000
commitd1a6e735ac35eb35b0ee04e2f44a399a8893e526 (patch)
tree5a52f4f1ccd0958d60972edcd4dc09012128ae60 /libc/sysdeps/linux/common/chdir.c
parenta8224c8856eff26b9049e70a310ddeed90bfcc6b (diff)
Add hidden versions
Diffstat (limited to 'libc/sysdeps/linux/common/chdir.c')
-rw-r--r--libc/sysdeps/linux/common/chdir.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/common/chdir.c b/libc/sysdeps/linux/common/chdir.c
index 037e39c8b..ff4ba527b 100644
--- a/libc/sysdeps/linux/common/chdir.c
+++ b/libc/sysdeps/linux/common/chdir.c
@@ -13,8 +13,8 @@
#define __NR___syscall_chdir __NR_chdir
static inline _syscall1(int, __syscall_chdir, const char *, path);
-int chdir(const char *path)
+int attribute_hidden __chdir(const char *path)
{
return __syscall_chdir(path);
}
-
+strong_alias(__chdir,chdir)