summaryrefslogtreecommitdiff
path: root/lib/libc/stat/mkdirat.c
blob: dc075bb20edd5cac8425e3b79ecfb2d8c5d5e94c (plain)
1
2
3
4
5
6
7
8
9
10
11



#include <sys/stat.h>  // for mkdirat
#include <sys/types.h> // for mode_t
#include <syscall.h>   // for __syscall_3, syscall

int mkdirat(int fd, const char *path, mode_t mode)
{
	return syscall(mkdirat, fd, path, mode);
}