From 1944739a93eab0e90f4ffdbf6af40f406ee4aa7f Mon Sep 17 00:00:00 2001 From: Ilya Zakharevich Date: Thu, 20 Feb 1997 21:44:13 -0500 Subject: [PATCH] Minor update to malloc.c This change of defines may satisfy Nick in his future life, when he needs an effecient malloc() with DEBUGGING perl again: p5p-msgid: <199702210244.VAA03676@monk.mps.ohio-state.edu> --- malloc.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/malloc.c b/malloc.c index b4be031..63db091 100644 --- a/malloc.c +++ b/malloc.c @@ -3,9 +3,9 @@ */ #ifndef lint -#ifdef DEBUGGING -#define RCHECK -#endif +# if defined(DEBUGGING) && !defined(NO_RCHECK) +# define RCHECK +# endif /* * malloc.c (Caltech) 2/21/82 * Chris Kingsley, kingsley@cit-20. -- 2.7.4