diff options
author | Sascha Schumann <sas@php.net> | 2000-07-03 00:55:36 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-03 00:55:36 +0000 |
commit | a61721741b082f543eb98f18095c8687f9627264 (patch) | |
tree | 6afcc36f953bec3bbdfaa6f03c7ecfce51a07da1 /Zend/zend_execute.h | |
parent | 0db799424836c0668963596ab3003db122b0be38 (diff) | |
download | php-git-a61721741b082f543eb98f18095c8687f9627264.tar.gz |
Replace macros which begin with an underscore through an appropiately
named macro.
Diffstat (limited to 'Zend/zend_execute.h')
-rw-r--r-- | Zend/zend_execute.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_execute.h b/Zend/zend_execute.h index be1dc5350b..0a85b843b0 100644 --- a/Zend/zend_execute.h +++ b/Zend/zend_execute.h @@ -18,8 +18,8 @@ */ -#ifndef _EXECUTE_H -#define _EXECUTE_H +#ifndef ZEND_EXECUTE_H +#define ZEND_EXECUTE_H #include "zend_compile.h" #include "zend_hash.h" @@ -229,4 +229,4 @@ ZEND_API inline void zend_assign_to_variable_reference(znode *result, zval **var #define IS_OVERLOADED_OBJECT 1 #define IS_STRING_OFFSET 2 -#endif /* _EXECUTE_H */ +#endif /* ZEND_EXECUTE_H */ |