summaryrefslogtreecommitdiff
path: root/Zend/zend_globals_macros.h
diff options
context:
space:
mode:
authorSascha Schumann <sas@php.net>2000-07-02 23:54:19 +0000
committerSascha Schumann <sas@php.net>2000-07-02 23:54:19 +0000
commitb982307dd102d5f041127467fb9c23363c96add5 (patch)
tree377ae5441c5057bf10950033150958d08d544386 /Zend/zend_globals_macros.h
parent16017f6d78f130c9cbeef1cb1a34ed20338dec6f (diff)
downloadphp-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_globals_macros.h')
-rw-r--r--Zend/zend_globals_macros.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_globals_macros.h b/Zend/zend_globals_macros.h
index 8735da4bf0..62e83a65e0 100644
--- a/Zend/zend_globals_macros.h
+++ b/Zend/zend_globals_macros.h
@@ -18,8 +18,8 @@
*/
-#ifndef _ZEND_GLOBALS_MACROS_H
-#define _ZEND_GLOBALS_MACROS_H
+#ifndef ZEND_GLOBALS_MACROS_H
+#define ZEND_GLOBALS_MACROS_H
typedef struct _zend_compiler_globals zend_compiler_globals;
typedef struct _zend_executor_globals zend_executor_globals;
@@ -85,5 +85,5 @@ extern ZEND_API zend_executor_globals executor_globals;
extern ZEND_API zend_alloc_globals alloc_globals;
#endif
-#endif /* _ZEND_GLOBALS_MACROS_H */
+#endif /* ZEND_GLOBALS_MACROS_H */