Sign in
cobalt
/
cobalt
/
d2bc3b69d823bbaf46d1c4355b23486a85a6d791
/
.
/
third_party
/
musl
/
src
/
complex
/
cprojf.c
blob: 653be5e87cfcbf2d64f297fe21bed06423aab9e3 [
file
] [
log
] [
blame
]
#include
"libm.h"
float
complex cprojf
(
float
complex z
)
{
if
(
isinf
(
crealf
(
z
))
||
isinf
(
cimagf
(
z
)))
return
CMPLXF
(
INFINITY
,
copysignf
(
0.0
,
crealf
(
z
)));
return
z
;
}