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