summaryrefslogtreecommitdiff
path: root/userland/libc/sys/stat/mkdir.c
blob: ca10c30dd15c286d08ffe0a58004d55a4df849cb (plain)
1
2
3
4
5
6
#include <sys/stat.h>
#include <syscall.h>

int mkdir(const char *path, mode_t mode) {
  return syscall(SYS_MKDIR, (u32)path, (u32)mode, 0, 0, 0);
}