diff options
Diffstat (limited to 'src/complex/ctanhf.c')
-rw-r--r-- | src/complex/ctanhf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/ctanhf.c b/src/complex/ctanhf.c index 7f422ba7..56e33e5b 100644 --- a/src/complex/ctanhf.c +++ b/src/complex/ctanhf.c @@ -64,3 +64,11 @@ float complex ctanhf(float complex z) denom = 1 + beta * s * s; return CMPLXF((beta * rho * s) / denom, t / denom); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |