cabs.c 88 B

123456
  1. #include "libm.h"
  2. double cabs(double complex z)
  3. {
  4. return hypot(creal(z), cimag(z));
  5. }