Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
complex
/
cabsf.c
blob: 61643faa88011fe3e58e0470f24ce06d08b08961 [
file
] [
log
] [
blame
]
#include
<math.h>
#include
<complex.h>
float
cabsf
(
float
complex Z
)
{
return
(
float
)
_hypot
(
__real__ Z
,
__imag__ Z
);
}