summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/access.c
blob: 7735d8c42a18cee66feaf97f0e163431b4e29a9d (plain)
1
2
3
4
5
6
#include <syscall.h>

int access(const char *path, int amode)
{
	return syscall(access, path, amode);
}