diff options
author | Sascha Schumann <sas@php.net> | 2000-07-03 00:41:19 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-03 00:41:19 +0000 |
commit | cd754d7825924708ac00aef2e9c9f17d8e2f037c (patch) | |
tree | be589cee73217fb762eb7e534c3d672448856a4b /ext/dbase/php_dbase.h | |
parent | b982307dd102d5f041127467fb9c23363c96add5 (diff) | |
download | php-git-cd754d7825924708ac00aef2e9c9f17d8e2f037c.tar.gz |
Rename macros which begin with underscore to appropiate macros. The general
rule is:
macro_name=`echo $filename|tr a-z A-Z|sed 's/\./_/'`
Diffstat (limited to 'ext/dbase/php_dbase.h')
-rw-r--r-- | ext/dbase/php_dbase.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/dbase/php_dbase.h b/ext/dbase/php_dbase.h index 00800a582b..495f95d92f 100644 --- a/ext/dbase/php_dbase.h +++ b/ext/dbase/php_dbase.h @@ -29,8 +29,8 @@ /* $Id$ */ -#ifndef _DBASE_H -#define _DBASE_H +#ifndef PHP_DBASE_H +#define PHP_DBASE_H #if DBASE extern zend_module_entry dbase_module_entry; #define dbase_module_ptr &dbase_module_entry @@ -52,4 +52,4 @@ PHP_FUNCTION(dbase_get_record_with_names); #define phpext_dbase_ptr dbase_module_ptr -#endif /* _DBASE_H */ +#endif /* PHP_DBASE_H */ |