diff options
author | drh <drh@noemail.net> | 2016-07-09 16:14:45 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2016-07-09 16:14:45 +0000 |
commit | 43f58d6a17e2875e59b72e126c9393f50fe63e79 (patch) | |
tree | 69c4f6cb47339f8844cd1df8516981b877429087 /src/sqliteInt.h | |
parent | c2024c4ef2c69963199dbc60a16420e8515f88c5 (diff) | |
download | sqlite-43f58d6a17e2875e59b72e126c9393f50fe63e79.tar.gz sqlite-43f58d6a17e2875e59b72e126c9393f50fe63e79.zip |
Fix various internal #defines to conform to new C-language naming restrictions,
specifically that private-use macros names must not begin with "_".
FossilOrigin-Name: 5471aca0158851d3fb0a2517306917536deb38bb
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c52cd2992..998a17dac 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -12,8 +12,8 @@ ** Internal interface definitions for SQLite. ** */ -#ifndef _SQLITEINT_H_ -#define _SQLITEINT_H_ +#ifndef SQLITEINT_H +#define SQLITEINT_H /* Special Comments: ** @@ -4237,4 +4237,4 @@ int sqlite3ThreadJoin(SQLiteThread*, void**); int sqlite3DbstatRegister(sqlite3*); #endif -#endif /* _SQLITEINT_H_ */ +#endif /* SQLITEINT_H */ |