Sign in
mojo
/
mojo-tools
/
73e948c3cd78ca019b82d8ad10c2326e3920fffc
/
.
/
fusl
/
src
/
complex
/
cabs.c
blob: a03619e0b50d71e369d721bd42eaa9163901af13 [
file
] [
log
] [
blame
]
#include
"libm.h"
double
cabs
(
double
complex z
)
{
return
hypot
(
creal
(
z
),
cimag
(
z
));
}