From: Guido van Rossum Date: Thu, 29 Aug 1996 18:10:41 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v1.4~329 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57b1822459fdd8948c289f847c0fe69b41fd5007;p=python *** empty log message *** --- diff --git a/Python/hypot.c b/Python/hypot.c new file mode 100644 index 0000000000..293aeb819c --- /dev/null +++ b/Python/hypot.c @@ -0,0 +1,26 @@ +/* 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); + } +}