aboutsummaryrefslogtreecommitdiff
path: root/src/math/expm1f.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/expm1f.c')
-rw-r--r--src/math/expm1f.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/expm1f.c b/src/math/expm1f.c
index 09a41afe..dc2c599c 100644
--- a/src/math/expm1f.c
+++ b/src/math/expm1f.c
@@ -108,3 +108,11 @@ float expm1f(float x)
y = (x-(e+u.f)+1)*twopk;
return y;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif