summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/complex/csin.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/complex/csin.c')
-rw-r--r--libc-top-half/musl/src/complex/csin.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/complex/csin.c b/libc-top-half/musl/src/complex/csin.c
new file mode 100644
index 0000000..535c4bf
--- /dev/null
+++ b/libc-top-half/musl/src/complex/csin.c
@@ -0,0 +1,9 @@
+#include "complex_impl.h"
+
+/* sin(z) = -i sinh(i z) */
+
+double complex csin(double complex z)
+{
+ z = csinh(CMPLX(-cimag(z), creal(z)));
+ return CMPLX(cimag(z), -creal(z));
+}