fix and cleanup suseconds_t/timeval stuff (broken on 64-bit)
[musl] / src / stat / mkdir.c
1 #include <sys/stat.h>
2 #include "syscall.h"
3
4 int mkdir(const char *path, mode_t mode)
5 {
6         return syscall(SYS_mkdir, path, mode);
7 }