aboutsummaryrefslogtreecommitdiff
path: root/src/math/exp2f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/exp2f.c')
-rw-r--r--src/math/exp2f.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/exp2f.c b/src/math/exp2f.c
index 0360482c..85e99472 100644
--- a/src/math/exp2f.c
+++ b/src/math/exp2f.c
@@ -67,3 +67,11 @@ float exp2f(float x)
y = y * s;
return eval_as_float(y);
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif