aboutsummaryrefslogtreecommitdiff
path: root/src/stat/fchmod.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stat/fchmod.c')
-rw-r--r--src/stat/fchmod.c8
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