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