diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-27 10:10:39 +0000 |
commit | 2c254ba762d9392a732d5793b5b193ee6e395f1c (patch) | |
tree | 1b3d5bd700222f3bb7387b698be9647525d33573 /Zend/zend.h | |
parent | 736b4ae43d3f37fda450f6fcd67286a3bfed4fb6 (diff) | |
download | php-git-2c254ba762d9392a732d5793b5b193ee6e395f1c.tar.gz |
Get rid of ELS_*(), and use TSRMLS_*() instead.
This patch is *bound* to break some files, as I must have had typos somewhere.
If you use any uncommon extension, please try to build it...
Diffstat (limited to 'Zend/zend.h')
-rw-r--r-- | Zend/zend.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zend/zend.h b/Zend/zend.h index d43c082be0..579813d351 100644 --- a/Zend/zend.h +++ b/Zend/zend.h @@ -161,8 +161,8 @@ typedef unsigned short zend_ushort; #include "zend_hash.h" #include "zend_llist.h" -#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval *this_ptr, int return_value_used ELS_DC -#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, this_ptr, return_value_used ELS_CC +#define INTERNAL_FUNCTION_PARAMETERS int ht, zval *return_value, zval *this_ptr, int return_value_used TSRMLS_DC +#define INTERNAL_FUNCTION_PARAM_PASSTHRU ht, return_value, this_ptr, return_value_used TSRMLS_CC /* * zval |