diff options
Diffstat (limited to 'userland/libc/sys/stat/mkdir.c')
-rw-r--r-- | userland/libc/sys/stat/mkdir.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/userland/libc/sys/stat/mkdir.c b/userland/libc/sys/stat/mkdir.c new file mode 100644 index 0000000..c057fa7 --- /dev/null +++ b/userland/libc/sys/stat/mkdir.c @@ -0,0 +1,9 @@ +#include <sys/stat.h> +#include <assert.h> + +int mkdir(const char *path, mode_t mode) { + (void)path; + (void)mode; + assert(0); // TODO: Implement + return 0; +} |