diff options
author | Sascha Schumann <sas@php.net> | 2000-07-02 23:46:51 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-07-02 23:46:51 +0000 |
commit | 16017f6d78f130c9cbeef1cb1a34ed20338dec6f (patch) | |
tree | 845c49da8bfdb068ed1c18bdc648828d84acf637 /ext/dbase | |
parent | 8adf849dce983c6d5393cc270ad676356ac9427f (diff) | |
download | php-git-16017f6d78f130c9cbeef1cb1a34ed20338dec6f.tar.gz |
Change header protection macros to conform to standard.
Draft 3 of IEEE 1003.1 200x, "2.2 The Compilation Environment"
All identifiers that begin with an underscore and either an uppercase
letter or another underscore are always reserved for any use by the
implementation.
Diffstat (limited to 'ext/dbase')
-rw-r--r-- | ext/dbase/dbf.h | 6 | ||||
-rw-r--r-- | ext/dbase/dbf_ndx.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/ext/dbase/dbf.h b/ext/dbase/dbf.h index 08bc70dd41..c7ee8fde71 100644 --- a/ext/dbase/dbf.h +++ b/ext/dbase/dbf.h @@ -13,8 +13,8 @@ * (c) 1986 John Wiley & Sons, Inc. */ -#ifndef _DBF_H_ -#define _DBF_H_ +#ifndef DBF_H_ +#define DBF_H_ #include <stdlib.h> #include <string.h> @@ -91,4 +91,4 @@ typedef struct db_head dbhead_t; #include "dbf_misc.h" #include "dbf_rec.h" -#endif /* _DBF_H_ */ +#endif /* DBF_H_ */ diff --git a/ext/dbase/dbf_ndx.h b/ext/dbase/dbf_ndx.h index 3faff04025..4bc3d29641 100644 --- a/ext/dbase/dbf_ndx.h +++ b/ext/dbase/dbf_ndx.h @@ -12,8 +12,8 @@ * by Rick Spence */ -#ifndef _DBF_NDX_H_ -#define _DBF_NDX_H_ +#ifndef DBF_NDX_H_ +#define DBF_NDX_H_ #include "dbf.h" @@ -95,4 +95,4 @@ extern ndx_header_t *ndx_get_header(int); extern ndx_record_t *ndx_get_first_rec(ndx_header_t *); extern ndx_record_t *ndx_get_next_rec(ndx_header_t *, ndx_record_t *); -#endif /* _DBF_NDX_H_ */ +#endif /* DBF_NDX_H_ */ |