diff options
Diffstat (limited to 'src/complex/csinh.c')
-rw-r--r-- | src/complex/csinh.c | 8 |
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 |