diff options
author | danielk1977 <danielk1977@noemail.net> | 2007-09-14 16:20:00 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2007-09-14 16:20:00 +0000 |
commit | a15db353049410146bf56834f295703f06a52232 (patch) | |
tree | a2f2bfec77a7d2edd8cebf5fcd6bba52ff3cb127 /src/tclsqlite.c | |
parent | b61c16d9871290ca455e94789c7890e5fb5e216e (diff) | |
download | sqlite-a15db353049410146bf56834f295703f06a52232.tar.gz sqlite-a15db353049410146bf56834f295703f06a52232.zip |
Minor fixes for the OMIT_INCRBLOB compilation option. (CVS 4430)
FossilOrigin-Name: 87e37eabf0ddef252bbc12f6857d33c2b136dcd3
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index c9e56ed1c..e81846e6b 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.202 2007/09/07 11:29:25 danielk1977 Exp $ +** $Id: tclsqlite.c,v 1.203 2007/09/14 16:20:01 danielk1977 Exp $ */ #include "tcl.h" #include <errno.h> @@ -2498,6 +2498,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int Sqlitetestsse_Init(Tcl_Interp*); extern int Sqlitetesttclvar_Init(Tcl_Interp*); extern int SqlitetestThread_Init(Tcl_Interp*); + extern int SqlitetestOnefile_Init(); Md5_Init(interp); Sqliteconfig_Init(interp); @@ -2517,6 +2518,8 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetestschema_Init(interp); Sqlitetesttclvar_Init(interp); SqlitetestThread_Init(interp); + SqlitetestOnefile_Init(interp); + #ifdef SQLITE_SSE Sqlitetestsse_Init(interp); #endif |