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