summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index f4089f4..9cff9e0 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -40,7 +40,7 @@ extern double ldexp PROTO((double, int));
extern double modf PROTO((double, double *));
#endif
-#ifdef HAVE_HYPOT
+#if defined(HAVE_HYPOT) && !defined(NeXT)
extern double hypot PROTO((double, double));
#endif