Sign in
third-party-mirror
/
mingw-w64
/
518dd33c326f65684e8e938262b2a9ca94804cfb
/
.
/
mingw-w64-crt
/
complex
/
cabsl.c
blob: fbe2b3abf70a170c087741869c23692d1c5d1eca [
file
] [
log
] [
blame
]
#include
<math.h>
#include
<complex.h>
long
double
cabsl
(
long
double
complex Z
)
{
return
hypotl
(
__real__ Z
,
__imag__ Z
);
}