2019-07-16 19:54:14 -04:00

7 lines
98 B
C

#include "complex_impl.h"
float cabsf(float complex z)
{
return hypotf(crealf(z), cimagf(z));
}