fix double-processing of DT_RELR relocations in ldso relocating itself
[musl] / src / stat / mkdir.c
index 8295cad..32625b7 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
 }