Sign in
third-party-mirror
/
mingw-w64
/
cdeef5332e32edddf27a0188cceaa450f216c50b
/
.
/
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
);
}