diff options
Diffstat (limited to 'src/complex/ccoshf.c')
-rw-r--r-- | src/complex/ccoshf.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/ccoshf.c b/src/complex/ccoshf.c index 189ce946..63ec62b7 100644 --- a/src/complex/ccoshf.c +++ b/src/complex/ccoshf.c @@ -88,3 +88,11 @@ float complex ccoshf(float complex z) return CMPLXF((x * x) * (y - y), (x + x) * (y - y)); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |