aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2015-06-30 16:29:59 +0000
committerdrh <drh@noemail.net>2015-06-30 16:29:59 +0000
commit59b4bd48402d7e3fd43c6421c914f941381ad67f (patch)
tree610aac3f446aa781e946a4f01f91496acae59cb9 /src/sqliteInt.h
parentbe7d4978365fe110e08ad2ef2f4b09a19f350660 (diff)
parentda6d3e2117fd2ab1cbcc0f21ac5839d08d04344e (diff)
downloadsqlite-59b4bd48402d7e3fd43c6421c914f941381ad67f.tar.gz
sqlite-59b4bd48402d7e3fd43c6421c914f941381ad67f.zip
Merge all the latest enhancements from trunk. This merge include FTS5
and a number of notable performance enhancements. FossilOrigin-Name: 39936b33b0668aad81aa574d4d74c92b0ddd218a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 6ed78f747..b0987f5cf 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -60,6 +60,13 @@
# define _LARGEFILE_SOURCE 1
#endif
+/* What version of GCC is being used. 0 means GCC is not being used */
+#ifdef __GNUC__
+# define GCC_VERSION (__GNUC__*1000000+__GNUC_MINOR__*1000+__GNUC_PATCHLEVEL__)
+#else
+# define GCC_VERSION 0
+#endif
+
/* Needed for various definitions... */
#if defined(__GNUC__) && !defined(_GNU_SOURCE)
# define _GNU_SOURCE
@@ -3250,6 +3257,7 @@ int sqlite3CodeOnce(Parse *);
Bitvec *sqlite3BitvecCreate(u32);
int sqlite3BitvecTest(Bitvec*, u32);
+int sqlite3BitvecTestNotNull(Bitvec*, u32);
int sqlite3BitvecSet(Bitvec*, u32);
void sqlite3BitvecClear(Bitvec*, u32, void*);
void sqlite3BitvecDestroy(Bitvec*);