shithub: plan9front

ref: 0d59a2358a2a1f93fb28cd7f47f8420fbf06a9af
dir: /sys/src/cmd/python/Python/hypot.c/

View raw version
/* hypot() replacement */

#include "pyconfig.h"
#include "pyport.h"

double hypot(double x, double y)
{
	double yx;

	x = fabs(x);
	y = fabs(y);
	if (x < y) {
		double temp = x;
		x = y;
		y = temp;
	}
	if (x == 0.)
		return 0.;
	else {
		yx = y/x;
		return x*sqrt(1.+yx*yx);
	}
}