summaryrefslogtreecommitdiff
path: root/src/sys/stat/mkdir.c
blob: 7b3f510dd0a0b6bb1e17283eb8e1cdfaac29eeac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "sys/types.h"
#include <sys/stat.h>
#include "nonstd/syscall.h"

int mkdir(const char *path, mode_t mode)
{
	(void)path; (void)mode;
	return -1;
}

/*
POSIX(1)
*/