summaryrefslogtreecommitdiffstats
path: root/Mac/mwerks
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:46:57 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>1996-10-23 15:46:57 (GMT)
commit46ed276bc36b0f72a0b20068cf1a490c9bdbdbed (patch)
treee9b4e283f748e617c09ebc473a65de64188e98e0 /Mac/mwerks
parent6b9e56012a004ae44b15407457b92910528d0b90 (diff)
downloadcpython-46ed276bc36b0f72a0b20068cf1a490c9bdbdbed.zip
cpython-46ed276bc36b0f72a0b20068cf1a490c9bdbdbed.tar.gz
cpython-46ed276bc36b0f72a0b20068cf1a490c9bdbdbed.tar.bz2
Malloc debugging now flagged with USE_MALLOC_DEBUG
Diffstat (limited to 'Mac/mwerks')
-rw-r--r--Mac/mwerks/malloc/malloc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/Mac/mwerks/malloc/malloc.c b/Mac/mwerks/malloc/malloc.c
index 897d500..5178b66 100644
--- a/Mac/mwerks/malloc/malloc.c
+++ b/Mac/mwerks/malloc/malloc.c
@@ -52,12 +52,14 @@ static char *rcsid = "$Id$";
*
*/
-
+#ifdef USE_MALLOC_DEBUG
+/* You may also selectively enable some of these (but some are interdependent) */
#define DEBUG
#define DEBUG2
#define MSTATS
#define RCHECK
#define VCHECK
+#endif /* USE_MALLOC_DEBUG */
typedef unsigned char u_char;
typedef unsigned long u_long;