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