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