| 1 | #include <sys/stat.h> |
| 2 | #include <fcntl.h> |
| 3 | #include "syscall.h" |
| 4 | |
| 5 | int mkdir(const char *path, mode_t mode) |
| 6 | { |
| 7 | #ifdef SYS_mkdir |
| 8 | 	return syscall(SYS_mkdir, path, mode); |
| 9 | #else |
| 10 | 	return syscall(SYS_mkdirat, AT_FDCWD, path, mode); |
| 11 | #endif |
| 12 | } |