From aaf1b23520b7ae20c89412985f68b2eca3caecd7 Mon Sep 17 00:00:00 2001 From: wessels <> Date: Thu, 13 Aug 1998 23:38:18 +0000 Subject: [PATCH] try again to disable assert under purify --- src/squid.h | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/squid.h b/src/squid.h index 75f0c76272..fbfd7240ff 100644 --- a/src/squid.h +++ b/src/squid.h @@ -1,6 +1,6 @@ /* - * $Id: squid.h,v 1.175 1998/07/22 20:37:50 wessels Exp $ + * $Id: squid.h,v 1.176 1998/08/13 17:38:18 wessels Exp $ * * AUTHOR: Duane Wessels * @@ -68,6 +68,11 @@ #define FD_SETSIZE SQUID_MAXFD #endif +#if PURIFY +/* disable assert() under purify */ +#define NODEBUG +#endif + #if HAVE_UNISTD_H #include #endif @@ -283,8 +288,6 @@ struct rusage { #endif #if PURIFY -/* disable assert() under purify */ -#define NODEBUG #define LOCAL_ARRAY(type,name,size) \ static type *local_##name=NULL; \ type *name = local_##name ? local_##name : \ -- 2.47.3