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_fast_cache.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_fast_cache.h')
| -rw-r--r-- | Zend/zend_fast_cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_fast_cache.h b/Zend/zend_fast_cache.h index ab238b2d11..883bb589ee 100644 --- a/Zend/zend_fast_cache.h +++ b/Zend/zend_fast_cache.h @@ -18,8 +18,8 @@ */ -#ifndef _ZEND_FAST_CACHE_H -#define _ZEND_FAST_CACHE_H +#ifndef ZEND_FAST_CACHE_H +#define ZEND_FAST_CACHE_H #ifndef ZEND_ENABLE_FAST_CACHE # if ZEND_DEBUG @@ -130,7 +130,7 @@ typedef struct _zend_fast_cache_list_entry { #define FREE_HASHTABLE_REL(ht) \ ZEND_FAST_FREE_REL(ht, HASHTABLE_CACHE_LIST) -#endif /* _ZEND_FAST_CACHE_H */ +#endif /* ZEND_FAST_CACHE_H */ /* * Local variables: |
