1#include <unistd.h>
2#include <fcntl.h>
3#include "syscall.h"
4
5int access(const char *filename, int amode)
6{
7#ifdef SYS_access
8	return syscall(SYS_access, filename, amode);
9#else
10	return syscall(SYS_faccessat, AT_FDCWD, filename, amode, 0);
11#endif
12}
13