aboutsummaryrefslogtreecommitdiff
path: root/sys/src/mkdirat.c
blob: f6239d6d29153836521a48dc6f90329e0d667f52 (plain)
1
2
3
4
5
6
7
8
#include "internal.h"

int
mkdirat(int dirfd, char *path, uint mode)
{
    long ret = syscall(ยทMkdirAt, dirfd, path, mode);
    return error(ret);
}