]> granicus.if.org Git - python/commitdiff
Don't make an exception for NeXT (BBUM says it's no longer needed).
authorGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 20:44:31 +0000 (20:44 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Jul 1996 20:44:31 +0000 (20:44 +0000)
(But hypot() should really be defined in a separate file, triggered by
configure.)

Modules/mathmodule.c

index 2beb60913b2d77710dba2610d5876311fa68f63f..242bd6f97729775489f1436d629e739436a8ef22 100644 (file)
@@ -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)