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