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

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