blob: 61643faa88011fe3e58e0470f24ce06d08b08961 [file] [log] [blame]
#include <math.h>
#include <complex.h>
float cabsf (float complex Z)
{
return (float) _hypot ( __real__ Z, __imag__ Z);
}