Sign in
cobalt
/
cobalt
/
b95ea55ccebda33f820d043e4b4dc85c10d7584d
/
.
/
third_party
/
musl
/
src
/
complex
/
cproj.c
blob: 15f358a14f045c0dd600a3c654b058c4c212326c [
file
] [
log
] [
blame
]
#include
"libm.h"
double
complex cproj
(
double
complex z
)
{
if
(
isinf
(
creal
(
z
))
||
isinf
(
cimag
(
z
)))
return
CMPLX
(
INFINITY
,
copysign
(
0.0
,
creal
(
z
)));
return
z
;
}