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