diff options
Diffstat (limited to 'src/complex/csin.c')
-rw-r--r-- | src/complex/csin.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/complex/csin.c b/src/complex/csin.c index 535c4bf8..a3427841 100644 --- a/src/complex/csin.c +++ b/src/complex/csin.c @@ -7,3 +7,11 @@ double complex csin(double complex z) z = csinh(CMPLX(-cimag(z), creal(z))); return CMPLX(cimag(z), -creal(z)); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |