aboutsummaryrefslogtreecommitdiff
path: root/src/complex/csin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/complex/csin.c')
-rw-r--r--src/complex/csin.c8
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