diff options
Diffstat (limited to '')
-rw-r--r-- | libc-top-half/musl/src/complex/casinhf.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/complex/casinhf.c b/libc-top-half/musl/src/complex/casinhf.c new file mode 100644 index 0000000..93d82e5 --- /dev/null +++ b/libc-top-half/musl/src/complex/casinhf.c @@ -0,0 +1,7 @@ +#include "complex_impl.h" + +float complex casinhf(float complex z) +{ + z = casinf(CMPLXF(-cimagf(z), crealf(z))); + return CMPLXF(cimagf(z), -crealf(z)); +} |