blob: b8bc2527d757e62d02db0f2fd6ffa2751744e0d8 [file] [log] [blame]
#include <sys/stat.h>
#include "syscall.h"
int mkdirat(int fd, const char *path, mode_t mode)
{
return syscall(SYS_mkdirat, fd, path, mode);
}