aboutsummaryrefslogtreecommitdiff
path: root/src/legacy/futimes.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/legacy/futimes.c')
-rw-r--r--src/legacy/futimes.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/legacy/futimes.c b/src/legacy/futimes.c
index 1c19eb1f..1d80ec0f 100644
--- a/src/legacy/futimes.c
+++ b/src/legacy/futimes.c
@@ -12,3 +12,11 @@ int futimes(int fd, const struct timeval tv[2])
times[1].tv_nsec = tv[1].tv_usec * 1000;
return futimens(fd, times);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif