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