diff options
| author | Zeev Suraski <zeev@php.net> | 2001-07-30 05:34:21 +0000 |
|---|---|---|
| committer | Zeev Suraski <zeev@php.net> | 2001-07-30 05:34:21 +0000 |
| commit | b52554951fe50acb55e5607987994b69032198a3 (patch) | |
| tree | 5ec13411ec99977c1296a7c29e030cce64b41ccb /Zend/zend_builtin_functions.c | |
| parent | 3839af35dccc1f0c79e335334bb060895ef94f7b (diff) | |
| download | php-git-b52554951fe50acb55e5607987994b69032198a3.tar.gz | |
More TSRMLS_FETCH work, and get rid of redundant ParametersPassedByRef
Diffstat (limited to 'Zend/zend_builtin_functions.c')
| -rw-r--r-- | Zend/zend_builtin_functions.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 4b13075058..11cf531837 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -69,9 +69,8 @@ static ZEND_FUNCTION(zend_test_func); #endif ZEND_API unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE }; -ZEND_API unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW }; ZEND_API unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE }; -ZEND_API unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW }; +ZEND_API unsigned char third_arg_force_ref[] = { 3, BYREF_NONE, BYREF_NONE, BYREF_FORCE }; static zend_function_entry builtin_functions[] = { ZEND_FE(zend_version, NULL) |
