summaryrefslogtreecommitdiff
path: root/userland/libc/sys/stat/mkdir.c
blob: c057fa7c43389c6ce27d5274c69069a0e1d5cf46 (plain)
1
2
3
4
5
6
7
8
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;
}