aboutsummaryrefslogtreecommitdiff
path: root/src/complex/csinhf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/csinhf.c')
-rw-r--r--src/complex/csinhf.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/csinhf.c b/src/complex/csinhf.c
index eb1d98c5..1aefb69c 100644
--- a/src/complex/csinhf.c
+++ b/src/complex/csinhf.c
@@ -88,3 +88,11 @@ float complex csinhf(float complex z)
return CMPLXF((x * x) * (y - y), (x + x) * (y - y));
}
+
+
+#ifdef TEST
+int
+main(void) {
+ return 0;
+}
+#endif