summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/mkdirat.c
diff options
context:
space:
mode:
authorMarkos Chandras <markos.chandras@imgtec.com>2012-10-10 15:10:27 +0100
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2013-02-20 13:45:11 +0100
commitecb2be2c0a2f9c489663a4b01b97074dda2ceb1e (patch)
tree4f9c1c406d87d92c2d3c482e76b9f444e5048401 /libc/sysdeps/linux/common/mkdirat.c
parentd8386ad5e72b0e0583cc233d476c5b50ca66a4e5 (diff)
mkdir: Use mkdirat if arch does not have the mkdir syscall
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/mkdirat.c')
-rw-r--r--libc/sysdeps/linux/common/mkdirat.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/mkdirat.c b/libc/sysdeps/linux/common/mkdirat.c
index 4da9468e1..871104bda 100644
--- a/libc/sysdeps/linux/common/mkdirat.c
+++ b/libc/sysdeps/linux/common/mkdirat.c
@@ -11,6 +11,7 @@
#ifdef __NR_mkdirat
_syscall3(int, mkdirat, int, fd, const char *, path, mode_t, mode)
+libc_hidden_def(mkdirat)
#else
/* should add emulation with mkdir() and /proc/self/fd/ ... */
#endif