aboutsummaryrefslogtreecommitdiff
path: root/src/math/floor.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/floor.c')
-rw-r--r--src/math/floor.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/floor.c b/src/math/floor.c
index 14a31cd8..14c1822f 100644
--- a/src/math/floor.c
+++ b/src/math/floor.c
@@ -29,3 +29,11 @@ double floor(double x)
return x + y - 1;
return x + y;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif