aboutsummaryrefslogtreecommitdiff
path: root/src/math/cbrtf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/cbrtf.c')
-rw-r--r--src/math/cbrtf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/cbrtf.c b/src/math/cbrtf.c
index 89c2c865..b0c35fff 100644
--- a/src/math/cbrtf.c
+++ b/src/math/cbrtf.c
@@ -64,3 +64,11 @@ float cbrtf(float x)
/* rounding to 24 bits is perfect in round-to-nearest mode */
return T;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif