Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
complex
/
cproj.c
blob: 9ae1e17c0d8e26c91e0608794427f790bd94b65c [
file
] [
log
] [
blame
]
#include
"complex_impl.h"
double
complex cproj
(
double
complex z
)
{
if
(
isinf
(
creal
(
z
))
||
isinf
(
cimag
(
z
)))
return
CMPLX
(
INFINITY
,
copysign
(
0.0
,
creal
(
z
)));
return
z
;
}