diff options
Diffstat (limited to 'src/complex/casinf.c')
-rw-r--r-- | src/complex/casinf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/casinf.c b/src/complex/casinf.c index 2cda2f08..5c28ac2f 100644 --- a/src/complex/casinf.c +++ b/src/complex/casinf.c @@ -13,3 +13,11 @@ float complex casinf(float complex z) float complex r = clogf(CMPLXF(-y, x) + csqrtf(w)); return CMPLXF(cimagf(r), -crealf(r)); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |