diff options
author | Zeev Suraski <zeev@php.net> | 2001-07-11 11:35:11 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 2001-07-11 11:35:11 +0000 |
commit | 4cc86259ddb76c02b871b9c4866561649d9c88e3 (patch) | |
tree | 23c8fd27d840be8d5c0a4eb3d6ac84c39c3e6ea7 /Zend/zend_variables.h | |
parent | dc60b4d4661a2f155690064c9350e6be9dbe8e77 (diff) | |
download | php-git-4cc86259ddb76c02b871b9c4866561649d9c88e3.tar.gz |
Get rid of ZVAL_RESET...
Diffstat (limited to 'Zend/zend_variables.h')
-rw-r--r-- | Zend/zend_variables.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Zend/zend_variables.h b/Zend/zend_variables.h index a0cd7fc357..48bb6afde3 100644 --- a/Zend/zend_variables.h +++ b/Zend/zend_variables.h @@ -54,10 +54,6 @@ ZEND_API void zval_add_ref(zval **p); #define ZVAL_PTR_DTOR (void (*)(void *)) zval_ptr_dtor_wrapper #define ZVAL_COPY_CTOR (void (*)(void *)) zval_copy_ctor_wrapper -#define ZVAL_RESET(var) \ - (var)->type = IS_BOOL; \ - (var)->value.lval = 0; - ZEND_API void var_uninit(zval *var); #endif |