#include "complex_impl.h" float cargf(float complex z) { return atan2f(cimagf(z), crealf(z)); } #ifdef TEST int main(void) { return 0; } #endif