aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2001-06-22 19:15:00 +0000
committerdrh <drh@noemail.net>2001-06-22 19:15:00 +0000
commit8c42ca93667cd678ae873f054ed6bec9b6a39137 (patch)
tree1dc5e76eb3c93b72fb4ec4c6ce95343bb42d6f20 /src/tclsqlite.c
parent14acc04e916fee0dff788b03b0bb3de333bfdcb6 (diff)
downloadsqlite-8c42ca93667cd678ae873f054ed6bec9b6a39137.tar.gz
sqlite-8c42ca93667cd678ae873f054ed6bec9b6a39137.zip
The BTree code compiles and links now, but it does not work yet. (CVS 226)
FossilOrigin-Name: b31c49021c260a67b7848bc077b75a7146e31c71
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 6d5c2c6b0..d364cb7b3 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -23,7 +23,7 @@
*************************************************************************
** A TCL Interface to SQLite
**
-** $Id: tclsqlite.c,v 1.18 2001/04/15 00:37:09 drh Exp $
+** $Id: tclsqlite.c,v 1.19 2001/06/22 19:15:01 drh Exp $
*/
#ifndef NO_TCL /* Omit this whole file if TCL is unavailable */
@@ -511,8 +511,10 @@ int TCLSH_MAIN(int argc, char **argv){
{
extern int Sqlitetest1_Init(Tcl_Interp*);
extern int Sqlitetest2_Init(Tcl_Interp*);
+ extern int Sqlitetest3_Init(Tcl_Interp*);
Sqlitetest1_Init(interp);
Sqlitetest2_Init(interp);
+ Sqlitetest3_Init(interp);
}
#endif
if( argc>=2 ){