summaryrefslogtreecommitdiff
path: root/lib/libm/cargf.c
blob: f7cee9dcf029c8c54900925edd8a1812e79d84f1 (plain)
1
2
3
4
5
6
7
#include <complex.h> // for cargf, complex
#include <math.h>    // for atan2f

float cargf(float complex z)
{
	return atan2f(__imag__ z, __real__ z);
}