aboutsummaryrefslogtreecommitdiff
path: root/src/math/asinh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/asinh.c')
-rw-r--r--src/math/asinh.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/math/asinh.c b/src/math/asinh.c
index 0829f228..a60e5409 100644
--- a/src/math/asinh.c
+++ b/src/math/asinh.c
@@ -26,3 +26,11 @@ double asinh(double x)
}
return s ? -x : x;
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif