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

7 lines
96 B
C
Vendored

#include "complex_impl.h"
double carg(double complex z)
{
return atan2(cimag(z), creal(z));
}