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


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

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