#include "complex_impl.h" double carg(double complex z) { return atan2(cimag(z), creal(z)); } #ifdef TEST int main(void) { return 0; } #endif