diff options
Diffstat (limited to 'src/unistd/faccessat.c')
-rw-r--r-- | src/unistd/faccessat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/unistd/faccessat.c b/src/unistd/faccessat.c index 557503eb..605300d0 100644 --- a/src/unistd/faccessat.c +++ b/src/unistd/faccessat.c @@ -59,3 +59,11 @@ int faccessat(int fd, const char *filename, int amode, int flag) return __syscall_ret(ret); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |