V8/usr/src/cmd/cfront/libC/complex/arg.c

Compare this file to the similar file:
Show the results in this format:


#include "complex.h"

double	arg(complex z)
{
	return atan2(z.im,z.re);
}