summaryrefslogtreecommitdiff
path: root/Zend/zend_stack.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_stack.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_stack.h')
-rw-r--r--Zend/zend_stack.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_stack.h b/Zend/zend_stack.h
index 9304f647d9..a57b9ebe50 100644
--- a/Zend/zend_stack.h
+++ b/Zend/zend_stack.h
@@ -18,8 +18,8 @@
*/
-#ifndef _ZEND_STACK_H
-#define _ZEND_STACK_H
+#ifndef ZEND_STACK_H
+#define ZEND_STACK_H
typedef struct _zend_stack {
int top, max;
@@ -44,4 +44,4 @@ ZEND_API void zend_stack_apply_with_argument(zend_stack *stack, int type, int (*
#define ZEND_STACK_APPLY_TOPDOWN 1
#define ZEND_STACK_APPLY_BOTTOMUP 2
-#endif /* _ZEND_STACK_H */
+#endif /* ZEND_STACK_H */