diff options
author | Sascha Schumann <sas@php.net> | 2000-07-03 00:45:21 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-03 00:45:21 +0000 |
commit | 0db799424836c0668963596ab3003db122b0be38 (patch) | |
tree | 9aec6f6a08ea086357ed67c5ee38940a0f32bb71 | |
parent | cd754d7825924708ac00aef2e9c9f17d8e2f037c (diff) | |
download | php-git-0db799424836c0668963596ab3003db122b0be38.tar.gz |
Rename macros which begin with underscore to valid macros.
-rw-r--r-- | main/fopen_wrappers.h | 4 | ||||
-rw-r--r-- | main/php3_compat.h | 6 | ||||
-rw-r--r-- | main/php_main.h | 4 | ||||
-rw-r--r-- | win32/syslog.h | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/main/fopen_wrappers.h b/main/fopen_wrappers.h index 152c965d31..5c75cc35b4 100644 --- a/main/fopen_wrappers.h +++ b/main/fopen_wrappers.h @@ -17,8 +17,8 @@ */ /* $Id$ */ -#ifndef _FOPEN_WRAPPERS_H -#define _FOPEN_WRAPPERS_H +#ifndef FOPEN_WRAPPERS_H +#define FOPEN_WRAPPERS_H #include "php_globals.h" diff --git a/main/php3_compat.h b/main/php3_compat.h index 213cb5374b..3171aea5d6 100644 --- a/main/php3_compat.h +++ b/main/php3_compat.h @@ -1,5 +1,5 @@ -#ifndef _PHP_COMPAT_H -#define _PHP_COMPAT_H +#ifndef PHP3_COMPAT_H +#define PHP3_COMPAT_H #define _php3_hash_init zend_hash_init #define _php3_hash_destroy zend_hash_destroy @@ -94,4 +94,4 @@ #define list_entry zend_rsrc_list_entry -#endif /* _PHP_COMPAT_H */ +#endif /* PHP3_COMPAT_H */ diff --git a/main/php_main.h b/main/php_main.h index 977f6ada80..9b76886066 100644 --- a/main/php_main.h +++ b/main/php_main.h @@ -21,8 +21,8 @@ /* $Id$ */ -#ifndef _MAIN_H -#define _MAIN_H +#ifndef PHP_MAIN_H +#define PHP_MAIN_H #include "zend_globals.h" #include "php_globals.h" diff --git a/win32/syslog.h b/win32/syslog.h index 420e44b913..ac2651e7e0 100644 --- a/win32/syslog.h +++ b/win32/syslog.h @@ -11,8 +11,8 @@ * that will have to be done later. */ -#ifndef _SYS_LOG_H -#define _SYS_LOG_H +#ifndef SYSLOG_H +#define SYSLOG_H #define WIN32_LEAN_AND_MEAN #include <windows.h> @@ -70,4 +70,4 @@ extern void openlog(const char *, int, int); extern void syslog(int, const char *, ...); -#endif /* _SYS_LOG_H */ +#endif /* SYSLOG_H */ |