summaryrefslogtreecommitdiff
path: root/userland/libc/sys/stat/mkdir.c
blob: 927afd820e72be7dc53ec8f1974936f69ad1dea1 (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, (void *)path, (void *)mode, 0, 0, 0);
}