Skip to content

Commit

Permalink
Rename macros which begin with underscore to valid macros.
Browse files Browse the repository at this point in the history
  • Loading branch information
Sascha Schumann committed Jul 3, 2000
1 parent cd754d7 commit 0db7994
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions main/fopen_wrappers.h
Expand Up @@ -17,8 +17,8 @@
*/ */
/* $Id$ */ /* $Id$ */


#ifndef _FOPEN_WRAPPERS_H #ifndef FOPEN_WRAPPERS_H
#define _FOPEN_WRAPPERS_H #define FOPEN_WRAPPERS_H


#include "php_globals.h" #include "php_globals.h"


Expand Down
6 changes: 3 additions & 3 deletions main/php3_compat.h
@@ -1,5 +1,5 @@
#ifndef _PHP_COMPAT_H #ifndef PHP3_COMPAT_H
#define _PHP_COMPAT_H #define PHP3_COMPAT_H


#define _php3_hash_init zend_hash_init #define _php3_hash_init zend_hash_init
#define _php3_hash_destroy zend_hash_destroy #define _php3_hash_destroy zend_hash_destroy
Expand Down Expand Up @@ -94,4 +94,4 @@


#define list_entry zend_rsrc_list_entry #define list_entry zend_rsrc_list_entry


#endif /* _PHP_COMPAT_H */ #endif /* PHP3_COMPAT_H */
4 changes: 2 additions & 2 deletions main/php_main.h
Expand Up @@ -21,8 +21,8 @@
/* $Id$ */ /* $Id$ */




#ifndef _MAIN_H #ifndef PHP_MAIN_H
#define _MAIN_H #define PHP_MAIN_H


#include "zend_globals.h" #include "zend_globals.h"
#include "php_globals.h" #include "php_globals.h"
Expand Down
6 changes: 3 additions & 3 deletions win32/syslog.h
Expand Up @@ -11,8 +11,8 @@
* that will have to be done later. * that will have to be done later.
*/ */


#ifndef _SYS_LOG_H #ifndef SYSLOG_H
#define _SYS_LOG_H #define SYSLOG_H
#define WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN
#include <windows.h> #include <windows.h>


Expand Down Expand Up @@ -70,4 +70,4 @@ extern void openlog(const char *, int, int);
extern void syslog(int, const char *, ...); extern void syslog(int, const char *, ...);




#endif /* _SYS_LOG_H */ #endif /* SYSLOG_H */

0 comments on commit 0db7994

Please sign in to comment.