1 2 3 4 5 6 7
#include <math.h> #include <complex.h> float cabsf (float complex Z) { return (float) _hypot ( __real__ Z, __imag__ Z); }