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