aboutsummaryrefslogtreecommitdiff
path: root/src/math/sinhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/sinhf.c')
-rw-r--r--src/math/sinhf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/sinhf.c b/src/math/sinhf.c
index b9caa793..4f66924a 100644
--- a/src/math/sinhf.c
+++ b/src/math/sinhf.c
@@ -29,3 +29,11 @@ float sinhf(float x)
t = __expo2f(absx, 2*h);
return t;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif