0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 16:45:42 +01:00
cpython/Python/hypot.c

27 lines
309 B
C
Raw Normal View History

1996-08-29 20:10:41 +02:00
/* hypot() replacement */
#include "config.h"
#include "myproto.h"
#include "mymath.h"
double hypot(x, y)
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);
}
}