diff options
author | Zeev Suraski <zeev@php.net> | 2000-02-16 13:55:22 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2000-02-16 13:55:22 +0000 |
commit | 2a4d65f3b8406bb6ddb6ea847ae35987061dba7f (patch) | |
tree | c69ae89ea47b4ba303fc12d046a8f499daced5c3 /Zend/zend_builtin_functions.c | |
parent | 6b51b3f92f11b86186535c04f9f60661049bfba2 (diff) | |
download | php-git-2a4d65f3b8406bb6ddb6ea847ae35987061dba7f.tar.gz |
ZEND_TEST_EXCEPTIONS should be defined/undefined before it's checked
Diffstat (limited to 'Zend/zend_builtin_functions.c')
-rw-r--r-- | Zend/zend_builtin_functions.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 7629955f1f..b1b3ff2e7c 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -25,6 +25,8 @@ #include "zend_variables.h" #include "zend_constants.h" +#undef ZEND_TEST_EXCEPTIONS + static ZEND_FUNCTION(zend_version); static ZEND_FUNCTION(func_num_args); static ZEND_FUNCTION(func_get_arg); @@ -52,8 +54,6 @@ static ZEND_FUNCTION(is_subclass_of); extern unsigned char first_arg_force_ref[]; -#undef ZEND_TEST_EXCEPTIONS - static zend_function_entry builtin_functions[] = { ZEND_FE(zend_version, NULL) ZEND_FE(func_num_args, NULL) |