blob: 24ddc4a6802925161d131401fff64c3deec7d49f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include "sys/types.h"
#include <sys/stat.h>
#include "../../_syscall.h"
int mkdir(const char *path, mode_t mode)
{
(void)path; (void)mode;
return -1;
}
/*
POSIX(1)
*/
|