From cbc1cd802cccddef0ee86533ee08dc730b4e27f4 Mon Sep 17 00:00:00 2001 From: Yasuo Ohgaki Date: Thu, 14 Mar 2002 02:17:23 +0000 Subject: Include/enable assert.h/assert() when it is available --- main/php.h | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'main/php.h') diff --git a/main/php.h b/main/php.h index e17d6d886a..131ac7819e 100644 --- a/main/php.h +++ b/main/php.h @@ -63,7 +63,16 @@ #include "php_regex.h" - +#if HAVE_ASSERT_H +#if PHP_DEBUG +#undef NDEBUG +#else +#define NDEBUG +#endif +#include +#else /* HAVE_ASSERT_H */ +#define assert(expr) ((void) (0)) +#endif /* HAVE_ASSERT_H */ #define APACHE 0 -- cgit v1.2.1