diff options
Diffstat (limited to 'src/complex/ccosf.c')
-rw-r--r-- | src/complex/ccosf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/ccosf.c b/src/complex/ccosf.c index 490be9b3..70a52131 100644 --- a/src/complex/ccosf.c +++ b/src/complex/ccosf.c @@ -4,3 +4,11 @@ float complex ccosf(float complex z) { return ccoshf(CMPLXF(-cimagf(z), crealf(z))); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |