diff options
Diffstat (limited to 'src/stat/fchmodat.c')
-rw-r--r-- | src/stat/fchmodat.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/fchmodat.c b/src/stat/fchmodat.c index bc581050..2f0a38ec 100644 --- a/src/stat/fchmodat.c +++ b/src/stat/fchmodat.c @@ -35,3 +35,11 @@ int fchmodat(int fd, const char *path, mode_t mode, int flag) __syscall(SYS_close, fd2); return ret; } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |