diff options
author | Sascha Schumann <sas@php.net> | 2000-07-02 23:54:19 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-02 23:54:19 +0000 |
commit | b982307dd102d5f041127467fb9c23363c96add5 (patch) | |
tree | 377ae5441c5057bf10950033150958d08d544386 /Zend/zend_execute_locks.h | |
parent | 16017f6d78f130c9cbeef1cb1a34ed20338dec6f (diff) | |
download | php-git-b982307dd102d5f041127467fb9c23363c96add5.tar.gz |
Change header protection macros to conform to standard.
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
Diffstat (limited to 'Zend/zend_execute_locks.h')
-rw-r--r-- | Zend/zend_execute_locks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_execute_locks.h b/Zend/zend_execute_locks.h index b24ec642e9..c37a3a3e46 100644 --- a/Zend/zend_execute_locks.h +++ b/Zend/zend_execute_locks.h @@ -1,5 +1,5 @@ -#ifndef _ZEND_EXECUTE_LOCKS_H -#define _ZEND_EXECUTE_LOCKS_H +#ifndef ZEND_EXECUTE_LOCKS_H +#define ZEND_EXECUTE_LOCKS_H #define PZVAL_LOCK(z) ((z)->refcount++) #define PZVAL_UNLOCK(z) { ((z)->refcount--); \ @@ -19,4 +19,4 @@ #define SELECTIVE_PZVAL_LOCK(pzv, pzn) if (!((pzn)->u.EA.type & EXT_TYPE_UNUSED)) { PZVAL_LOCK(pzv); } -#endif /* _ZEND_EXECUTE_LOCKS_H */ +#endif /* ZEND_EXECUTE_LOCKS_H */ |