summaryrefslogtreecommitdiff
path: root/Zend/zend_API.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_API.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_API.h')
-rw-r--r--Zend/zend_API.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_API.h b/Zend/zend_API.h
index 31b81f2572..f603f0e50e 100644
--- a/Zend/zend_API.h
+++ b/Zend/zend_API.h
@@ -18,8 +18,8 @@
*/
-#ifndef _ZEND_API_H
-#define _ZEND_API_H
+#ifndef ZEND_API_H
+#define ZEND_API_H
#include "modules.h"
#include "zend_list.h"
@@ -416,7 +416,7 @@ ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length,
#define HASH_OF(p) ((p)->type==IS_ARRAY ? (p)->value.ht : (((p)->type==IS_OBJECT ? (p)->value.obj.properties : NULL)))
#define ZVAL_IS_NULL(z) ((z)->type==IS_NULL)
-#endif /* _ZEND_API_H */
+#endif /* ZEND_API_H */
/*
* Local variables: