1 2 3 4 5 6 7 8
#include <fcntl.h> #include <syscall.h> #include <sys/stat.h> int mkdirat(int fd, const char *path, mode_t mode) { return syscall(mkdirat, fd, path, mode); }