summaryrefslogtreecommitdiff
path: root/lib/libm/carg.c
blob: 634ace3d35488779c7054741427735cbb2c2cfc4 (plain)
1
2
3
4
5
6
7
#include <math.h>
#include <complex.h>

double carg(double complex z)
{
	return atan2(__imag__ z, __real__ z);
}