diff options
author | dan <dan@noemail.net> | 2015-05-19 16:50:18 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2015-05-19 16:50:18 +0000 |
commit | c5aca218aabc95cf275ae0f39e5cbb3b60435a8e (patch) | |
tree | 0acee859b67d16f0ff09282d724531411d08b8e7 /src/tclsqlite.c | |
parent | a48bae88195f68c5f82ae69c228cdf368e503751 (diff) | |
parent | 504ab3b6e50f80f6d10280135a6ad0cd46a521bc (diff) | |
download | sqlite-c5aca218aabc95cf275ae0f39e5cbb3b60435a8e.tar.gz sqlite-c5aca218aabc95cf275ae0f39e5cbb3b60435a8e.zip |
Merge the ota-update branch with trunk.
FossilOrigin-Name: 08e2864ed7c2d36410a248459061dcbd5576e145
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index b44f5b8fa..24114e92f 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3760,6 +3760,7 @@ static void init_all(Tcl_Interp *interp){ extern int Sqlitemultiplex_Init(Tcl_Interp*); extern int SqliteSuperlock_Init(Tcl_Interp*); extern int SqlitetestSyscall_Init(Tcl_Interp*); + extern int SqliteOta_Init(Tcl_Interp*); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) extern int Sqlitetestfts3_Init(Tcl_Interp *interp); @@ -3803,6 +3804,7 @@ static void init_all(Tcl_Interp *interp){ Sqlitemultiplex_Init(interp); SqliteSuperlock_Init(interp); SqlitetestSyscall_Init(interp); + SqliteOta_Init(interp); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) Sqlitetestfts3_Init(interp); |