Browse Source

Rename macros which begin with underscore to valid macros.

PHP-4.0.5
Sascha Schumann 26 years ago
parent
commit
0db7994248
  1. 4
      main/fopen_wrappers.h
  2. 6
      main/php3_compat.h
  3. 4
      main/php_main.h
  4. 6
      win32/syslog.h

4
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"

6
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 */

4
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"

6
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 */
Loading…
Cancel
Save