1 2 3 4 5 6
#include <syscall.h> int access(const char *path, int amode) { return syscall(access, path, amode); }