diff options
Diffstat (limited to 'src/unistd/access.c')
-rw-r--r-- | src/unistd/access.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/access.c b/src/unistd/access.c index d6eed683..7c8ed898 100644 --- a/src/unistd/access.c +++ b/src/unistd/access.c @@ -10,3 +10,11 @@ int access(const char *filename, int amode) return syscall(SYS_faccessat, AT_FDCWD, filename, amode, 0); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |