]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
try again to disable assert under purify
authorwessels <>
Thu, 13 Aug 1998 23:38:18 +0000 (23:38 +0000)
committerwessels <>
Thu, 13 Aug 1998 23:38:18 +0000 (23:38 +0000)
src/squid.h

index 75f0c762725b29dfb024c10f6bec59f025d4572b..fbfd7240ffc59883059e4af053c3e2ba5264c3de 100644 (file)
@@ -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
  *
 #define FD_SETSIZE SQUID_MAXFD
 #endif
 
+#if PURIFY
+/* disable assert() under purify */
+#define NODEBUG
+#endif
+
 #if HAVE_UNISTD_H
 #include <unistd.h>
 #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 : \