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_builtin_functions.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_builtin_functions.h')
-rw-r--r-- | Zend/zend_builtin_functions.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_builtin_functions.h b/Zend/zend_builtin_functions.h index 60952922be..e6828fabc1 100644 --- a/Zend/zend_builtin_functions.h +++ b/Zend/zend_builtin_functions.h @@ -18,9 +18,9 @@ */ -#ifndef _ZEND_BUILTIN_FUNCTIONS_H -#define _ZEND_BUILTIN_FUNCTIONS_H +#ifndef ZEND_BUILTIN_FUNCTIONS_H +#define ZEND_BUILTIN_FUNCTIONS_H int zend_startup_builtin_functions(void); -#endif /* _ZEND_BUILTIN_FUNCTIONS_H */ +#endif /* ZEND_BUILTIN_FUNCTIONS_H */ |