]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Don't disable assert on PURIFY
authorhno <>
Sat, 13 May 2006 03:52:24 +0000 (03:52 +0000)
committerhno <>
Sat, 13 May 2006 03:52:24 +0000 (03:52 +0000)
include/assert.h

index 7857c015d87f7d0313c00ba200c9ea5a8f1a6bdf..d89332eaf92095db4c21543f5103b9cccdb6edae 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: assert.h,v 1.2 2006/05/10 22:03:07 hno Exp $
+ * $Id: assert.h,v 1.3 2006/05/12 21:52:24 hno Exp $
  *
  * AUTHOR: Duane Wessels
  *
@@ -37,9 +37,7 @@
 
 #include "config.h"
 
-#if PURIFY
-#define assert(EX) ((void)0)
-#elif defined(NODEBUG)
+#if defined(NODEBUG)
 #define assert(EX) ((void)0)
 #elif STDC_HEADERS
 #define assert(EX)  ((EX)?((void)0):xassert( # EX , __FILE__, __LINE__))