Sign in
chromium
/
external
/
github.com
/
WebAssembly
/
musl
/
5b546faa67544af395d6407553762b37e9711157
/
.
/
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
;
}