diff options
Diffstat (limited to 'src/complex/catanhf.c')
-rw-r--r-- | src/complex/catanhf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/catanhf.c b/src/complex/catanhf.c index b0505f60..3a5cdc82 100644 --- a/src/complex/catanhf.c +++ b/src/complex/catanhf.c @@ -5,3 +5,11 @@ float complex catanhf(float complex z) z = catanf(CMPLXF(-cimagf(z), crealf(z))); return CMPLXF(cimagf(z), -crealf(z)); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |