blob: 7a1436535eb79750011a57b34b46eef342a78a8e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#include <sys/stat.h>
#include "syscall.h"
int mkdirat(int fd, const char *path, mode_t mode)
{
return syscall(SYS_mkdirat, fd, path, mode);
}
#ifdef TEST
int
main(void) {
return 0;
}
#endif
|