summaryrefslogtreecommitdiff
path: root/lib/libc/unistd/access.c
blob: 7ae7e4c1f50fe5e701ce36ca76f18f5e2b049ddf (plain)
1
2
3
4
5
6
7
8
9



#include <syscall.h> // for __syscall_2, syscall

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