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