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_errors.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_errors.h')
-rw-r--r-- | Zend/zend_errors.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_errors.h b/Zend/zend_errors.h index 52615770f0..8b43dc1988 100644 --- a/Zend/zend_errors.h +++ b/Zend/zend_errors.h @@ -18,8 +18,8 @@ */ -#ifndef _ZEND_ERRORS_H -#define _ZEND_ERRORS_H +#ifndef ZEND_ERRORS_H +#define ZEND_ERRORS_H #define E_ERROR (1<<0L) #define E_WARNING (1<<1L) @@ -36,5 +36,5 @@ #define E_ALL (E_ERROR | E_WARNING | E_PARSE | E_NOTICE | E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_COMPILE_WARNING | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE) #define E_CORE (E_CORE_ERROR | E_CORE_WARNING) -#endif /* _ZEND_ERRORS_H */ +#endif /* ZEND_ERRORS_H */ |