1
0

cabsf.c 98 B

123456
  1. #include "complex_impl.h"
  2. float cabsf(float complex z)
  3. {
  4. return hypotf(crealf(z), cimagf(z));
  5. }