From 5693412892b58635d1499b4ad7bf747ae404a8c3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 13 Feb 1995 16:19:04 +0000 Subject: [PATCH] malloc debug only on ppc --- Mac/Modules/macmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index ad3ca64c63b..6b5668b98cd 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -52,7 +52,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include #endif -#ifdef __MWERKS__ +#if defined(__MWERKS__) && defined(__powerc) #define MALLOC_DEBUG #endif