diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 14:11:18 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-08 14:11:18 +0000 |
commit | d1a6e735ac35eb35b0ee04e2f44a399a8893e526 (patch) | |
tree | 5a52f4f1ccd0958d60972edcd4dc09012128ae60 /libc/sysdeps/linux/common/mkdir.c | |
parent | a8224c8856eff26b9049e70a310ddeed90bfcc6b (diff) |
Add hidden versions
Diffstat (limited to 'libc/sysdeps/linux/common/mkdir.c')
-rw-r--r-- | libc/sysdeps/linux/common/mkdir.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/mkdir.c b/libc/sysdeps/linux/common/mkdir.c index cac9e1d09..5e96cf599 100644 --- a/libc/sysdeps/linux/common/mkdir.c +++ b/libc/sysdeps/linux/common/mkdir.c @@ -14,7 +14,8 @@ static inline _syscall2(int, __syscall_mkdir, const char *, pathname, __kernel_mode_t, mode); -int mkdir(const char *pathname, mode_t mode) +int attribute_hidden __mkdir(const char *pathname, mode_t mode) { return (__syscall_mkdir(pathname, mode)); } +strong_alias(__mkdir,mkdir) |