From: Guido van Rossum Date: Wed, 21 Aug 1996 20:36:52 +0000 (+0000) Subject: Avoid complaint about inconsistent hypot() linkage on NT. X-Git-Tag: v1.4b3~59 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3bcf7d2f0b68ada02fadfd15e2a8be5118addb10;p=thirdparty%2FPython%2Fcpython.git Avoid complaint about inconsistent hypot() linkage on NT. --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index e69aea9f4a4e..4ebb26e45e75 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -44,7 +44,9 @@ extern double modf PROTO((double, double *)); #if defined(HAVE_HYPOT) +#ifndef _MSC_VER extern double hypot PROTO((double, double)); +#endif #else double hypot(x,y) double x;