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

int
sys·access(char *path, int mode)
{
    return sys·accessat(sys·FdCwd, path, mode, 0);
}