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