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