carg.c 96 B

123456
  1. #include "complex_impl.h"
  2. double carg(double complex z)
  3. {
  4. return atan2(cimag(z), creal(z));
  5. }