summaryrefslogtreecommitdiff
path: root/malloc.c
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>2009-08-01 22:09:41 +0100
committerJesse Vincent <jesse@bestpractical.com>2009-08-03 12:14:52 +0100
commite94c1c0554cd0332543ba58d3b8fb932ccf66145 (patch)
tree53dd72d47bc0ac1e068609b932782ed3730b97b2 /malloc.c
parentcd86ed9d430a95bb9cf370c699245e1b667c146d (diff)
downloadperl-e94c1c0554cd0332543ba58d3b8fb932ccf66145.tar.gz
Removed vestigal support for Tenon Intersystems MachTen Unix layer for MacOS Classic.
Perl hasn't supported MachTen since 5.6.
Diffstat (limited to 'malloc.c')
-rw-r--r--malloc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/malloc.c b/malloc.c
index ade45d27f0..75818cd7b9 100644
--- a/malloc.c
+++ b/malloc.c
@@ -264,7 +264,7 @@
#define MIN_BUC_POW2 (sizeof(void*) > 4 ? 3 : 2) /* Allow for 4-byte arena. */
#define MIN_BUCKET (MIN_BUC_POW2 * BUCKETS_PER_POW2)
-#if !(defined(I286) || defined(atarist)
+#if !(defined(I286) || defined(atarist))
/* take 2k unless the block is bigger than that */
# define LOG_OF_MIN_ARENA 11
#else
@@ -552,7 +552,7 @@
#define u_short unsigned short
/* 286 and atarist like big chunks, which gives too much overhead. */
-#if (defined(RCHECK) || defined(I286) || defined(atarist) && defined(PACK_MALLOC)
+#if (defined(RCHECK) || defined(I286) || defined(atarist)) && defined(PACK_MALLOC)
# undef PACK_MALLOC
#endif
@@ -2536,7 +2536,7 @@ Perl_dump_mstats(pTHX_ const char *s)
#ifdef USE_PERL_SBRK
-# if defined(__MACHTEN_PPC__) || defined(NeXT) || defined(__NeXT__) || defined(PURIFY)
+# if defined(NeXT) || defined(__NeXT__) || defined(PURIFY)
# define PERL_SBRK_VIA_MALLOC
# endif