Avoid complaint about inconsistent hypot() linkage on NT.

This commit is contained in:
Guido van Rossum 1996-08-21 20:36:52 +00:00
parent cda848f49e
commit 3bcf7d2f0b

View File

@ -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;