Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android13-d2-release
/
.
/
src
/
complex
/
casinhf.c
blob: 93d82e5f4f11f8d7c99e8d4963889f4a1401d86f [
file
] [
log
] [
blame
] [
edit
]
#include
"complex_impl.h"
float
complex casinhf
(
float
complex z
)
{
z
=
casinf
(
CMPLXF
(-
cimagf
(
z
),
crealf
(
z
)));
return
CMPLXF
(
cimagf
(
z
),
-
crealf
(
z
));
}