]> granicus.if.org Git - python/commitdiff
Metrowerks PRO4 finally fixes the hypot snafu. (Jack Jansen)
authorGuido van Rossum <guido@python.org>
Mon, 2 Nov 1998 16:21:39 +0000 (16:21 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 2 Nov 1998 16:21:39 +0000 (16:21 +0000)
Include/mymath.h

index f4fffabf2f1fc47eae2e26237d716b13984581d7..dd6ee58841d8629ec6230d0271f0b96d14ea3644 100644 (file)
@@ -11,7 +11,7 @@
 
 #ifndef HAVE_HYPOT
 extern double hypot Py_PROTO((double, double));
-#ifdef __MWERKS__
+#ifdef MWERKS_BEFORE_PRO4
 #define hypot we_dont_want_faulty_hypot_decl
 #endif
 #endif