diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1995-01-22 16:52:38 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1995-01-22 16:52:38 (GMT) |
commit | 7cbf4803a93f8c4e7bf84dbdb02b390ca51e9751 (patch) | |
tree | 202b9bf0d74050b04d6b07078baa490c4ac34eaa /Mac | |
parent | 673e142e00903a52f3e48d4e94e21b6240180782 (diff) | |
download | cpython-7cbf4803a93f8c4e7bf84dbdb02b390ca51e9751.zip cpython-7cbf4803a93f8c4e7bf84dbdb02b390ca51e9751.tar.gz cpython-7cbf4803a93f8c4e7bf84dbdb02b390ca51e9751.tar.bz2 |
Make malloc stats routine available under MetroWerks
Diffstat (limited to 'Mac')
-rw-r--r-- | Mac/Modules/macmodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Mac/Modules/macmodule.c b/Mac/Modules/macmodule.c index fbb408b..f2ffc41 100644 --- a/Mac/Modules/macmodule.c +++ b/Mac/Modules/macmodule.c @@ -49,6 +49,10 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <fcntl.h> #endif +#ifdef __MWERKS__ +#define MALLOC_DEBUG +#endif + #include "macdefs.h" #include "dirent.h" |