s390x: add single-instruction math functions
[oweals/musl.git] / src / stat / mkdir.c
index 8295cad5a90b3972529015bc7b48ef43fb45b781..32625b7de32768dc45916b76c0d063af89e1203c 100644 (file)
@@ -1,7 +1,12 @@
 #include <sys/stat.h>
+#include <fcntl.h>
 #include "syscall.h"
 
 int mkdir(const char *path, mode_t mode)
 {
-       return syscall2(__NR_mkdir, (long)path, mode);
+#ifdef SYS_mkdir
+       return syscall(SYS_mkdir, path, mode);
+#else
+       return syscall(SYS_mkdirat, AT_FDCWD, path, mode);
+#endif
 }