1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/* * cabs() wrapper for hypot(). * * Written by J.T. Conklin, <jtc@wimsey.com> * Placed into the Public Domain, 1994. */ #include <complex.h> #include <math.h> double cabs(double _Complex z) { return hypot(__real__ z, __imag__ z); } libm_hidden_def(cabs)