diff options
author | jim winstead <jimw@php.net> | 2002-03-15 17:10:38 +0000 |
---|---|---|
committer | jim winstead <jimw@php.net> | 2002-03-15 17:10:38 +0000 |
commit | 12bc95432a0c9514643f60a8b5c84045d875d77a (patch) | |
tree | 8d8ad3f21f3e0d377e53218769beb4fc1d9fec49 /main/php.h | |
parent | c84a4ead958c0b052d0db918a07861f3cf7b98d0 (diff) | |
download | php-git-12bc95432a0c9514643f60a8b5c84045d875d77a.tar.gz |
don't redefine NDEBUG if it is already defined. yeesh.
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php.h b/main/php.h index 131ac7819e..5098fc71f3 100644 --- a/main/php.h +++ b/main/php.h @@ -67,8 +67,10 @@ #if PHP_DEBUG #undef NDEBUG #else +#ifndef NDEBUG #define NDEBUG #endif +#endif #include <assert.h> #else /* HAVE_ASSERT_H */ #define assert(expr) ((void) (0)) |