diff options
author | Sascha Schumann <sas@php.net> | 2000-07-03 00:55:36 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-03 00:55:36 +0000 |
commit | a61721741b082f543eb98f18095c8687f9627264 (patch) | |
tree | 6afcc36f953bec3bbdfaa6f03c7ecfce51a07da1 /Zend/zend_globals.h | |
parent | 0db799424836c0668963596ab3003db122b0be38 (diff) | |
download | php-git-a61721741b082f543eb98f18095c8687f9627264.tar.gz |
Replace macros which begin with an underscore through an appropiately
named macro.
Diffstat (limited to 'Zend/zend_globals.h')
-rw-r--r-- | Zend/zend_globals.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zend/zend_globals.h b/Zend/zend_globals.h index eafd922fd3..3223aaa210 100644 --- a/Zend/zend_globals.h +++ b/Zend/zend_globals.h @@ -18,8 +18,8 @@ */ -#ifndef _T_GLOBALS_H -#define _T_GLOBALS_H +#ifndef ZEND_GLOBALS_H +#define ZEND_GLOBALS_H #include <setjmp.h> @@ -217,4 +217,4 @@ struct _zend_alloc_globals { #endif }; -#endif /* _T_GLOBALS_H */ +#endif /* ZEND_GLOBALS_H */ |