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