Index: fusl/src/stat/mkdirat.c |
diff --git a/fusl/src/stat/mkdirat.c b/fusl/src/stat/mkdirat.c |
new file mode 100644 |
index 0000000000000000000000000000000000000000..b8bc2527d757e62d02db0f2fd6ffa2751744e0d8 |
--- /dev/null |
+++ b/fusl/src/stat/mkdirat.c |
@@ -0,0 +1,7 @@ |
+#include <sys/stat.h> |
+#include "syscall.h" |
+ |
+int mkdirat(int fd, const char *path, mode_t mode) |
+{ |
+ return syscall(SYS_mkdirat, fd, path, mode); |
+} |