aboutsummaryrefslogtreecommitdiff
path: root/src/sqlite3ext.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2016-07-09 16:14:45 +0000
committerdrh <drh@noemail.net>2016-07-09 16:14:45 +0000
commit43f58d6a17e2875e59b72e126c9393f50fe63e79 (patch)
tree69c4f6cb47339f8844cd1df8516981b877429087 /src/sqlite3ext.h
parentc2024c4ef2c69963199dbc60a16420e8515f88c5 (diff)
downloadsqlite-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/sqlite3ext.h')
-rw-r--r--src/sqlite3ext.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sqlite3ext.h b/src/sqlite3ext.h
index 20a2fcdf0..2d38e87ae 100644
--- a/src/sqlite3ext.h
+++ b/src/sqlite3ext.h
@@ -15,8 +15,8 @@
** as extensions by SQLite should #include this file instead of
** sqlite3.h.
*/
-#ifndef _SQLITE3EXT_H_
-#define _SQLITE3EXT_H_
+#ifndef SQLITE3EXT_H
+#define SQLITE3EXT_H
#include "sqlite3.h"
typedef struct sqlite3_api_routines sqlite3_api_routines;
@@ -543,4 +543,4 @@ struct sqlite3_api_routines {
# define SQLITE_EXTENSION_INIT3 /*no-op*/
#endif
-#endif /* _SQLITE3EXT_H_ */
+#endif /* SQLITE3EXT_H */