diff options
Diffstat (limited to 'src/complex/ccosl.c')
-rw-r--r-- | src/complex/ccosl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/ccosl.c b/src/complex/ccosl.c index 2530006b..9b1376af 100644 --- a/src/complex/ccosl.c +++ b/src/complex/ccosl.c @@ -11,3 +11,11 @@ long double complex ccosl(long double complex z) return ccoshl(CMPLXL(-cimagl(z), creall(z))); } #endif + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |