From b982307dd102d5f041127467fb9c23363c96add5 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sun, 2 Jul 2000 23:54:19 +0000 Subject: 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. --- Zend/zend_stack.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Zend/zend_stack.h') 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 */ -- cgit v1.2.1