aboutsummaryrefslogtreecommitdiff
path: root/src/time/__tm_to_secs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/time/__tm_to_secs.c')
-rw-r--r--src/time/__tm_to_secs.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/time/__tm_to_secs.c b/src/time/__tm_to_secs.c
index c29fa985..59705aa4 100644
--- a/src/time/__tm_to_secs.c
+++ b/src/time/__tm_to_secs.c
@@ -22,3 +22,11 @@ long long __tm_to_secs(const struct tm *tm)
t += tm->tm_sec;
return t;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif