diff options
Diffstat (limited to 'src/stat/fchmod.c')
-rw-r--r-- | src/stat/fchmod.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/stat/fchmod.c b/src/stat/fchmod.c index 7a503eef..468c049b 100644 --- a/src/stat/fchmod.c +++ b/src/stat/fchmod.c @@ -17,3 +17,11 @@ int fchmod(int fd, mode_t mode) return syscall(SYS_fchmodat, AT_FDCWD, buf, mode); #endif } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |