From 557d6d6608bd2a0486f04814f7ab2f605169d613 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 30 Jul 1996 20:44:31 +0000 Subject: [PATCH] Don't make an exception for NeXT (BBUM says it's no longer needed). (But hypot() should really be defined in a separate file, triggered by configure.) --- Modules/mathmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index 2beb60913b..242bd6f977 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -43,7 +43,7 @@ extern double modf PROTO((double, double *)); #endif /* _MSC_VER */ -#if defined(HAVE_HYPOT) && !defined(NeXT) +#if defined(HAVE_HYPOT) extern double hypot PROTO((double, double)); #else double hypot(x,y) -- 2.50.1