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