blob: 32625b7de32768dc45916b76c0d063af89e1203c [file] [log] [blame]
#include <sys/stat.h>
#include <fcntl.h>
#include "syscall.h"
int mkdir(const char *path, mode_t mode)
{
#ifdef SYS_mkdir
return syscall(SYS_mkdir, path, mode);
#else
return syscall(SYS_mkdirat, AT_FDCWD, path, mode);
#endif
}