aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordanielk1977 <danielk1977@noemail.net>2008-04-10 14:51:00 +0000
committerdanielk1977 <danielk1977@noemail.net>2008-04-10 14:51:00 +0000
commit5d1f5aa6ef6c3a9ea9e6e2e0becee2b134213944 (patch)
treed1fd28206fe91294d301c88c0ccfac19e5405198 /src/tclsqlite.c
parentb5df14486df54e55430c71487ac6ca3a987c60aa (diff)
downloadsqlite-5d1f5aa6ef6c3a9ea9e6e2e0becee2b134213944.tar.gz
sqlite-5d1f5aa6ef6c3a9ea9e6e2e0becee2b134213944.zip
Add source file test_osinst.c. A wrapper vfs with instrumentation capabilities. (CVS 4977)
FossilOrigin-Name: d9a6b653d3cb608610f13d2492fe9b3887acb3b9
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 47402217a..d9a3fa44c 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.214 2008/04/10 13:42:56 drh Exp $
+** $Id: tclsqlite.c,v 1.215 2008/04/10 14:51:01 danielk1977 Exp $
*/
#include "tcl.h"
#include <errno.h>
@@ -2531,6 +2531,7 @@ int TCLSH_MAIN(int argc, char **argv){
extern int Sqlitetesttclvar_Init(Tcl_Interp*);
extern int SqlitetestThread_Init(Tcl_Interp*);
extern int SqlitetestOnefile_Init();
+ extern int SqlitetestOsinst_Init(Tcl_Interp*);
Md5_Init(interp);
Sqliteconfig_Init(interp);
@@ -2552,6 +2553,7 @@ int TCLSH_MAIN(int argc, char **argv){
Sqlitetesttclvar_Init(interp);
SqlitetestThread_Init(interp);
SqlitetestOnefile_Init(interp);
+ SqlitetestOsinst_Init(interp);
#ifdef SQLITE_SSE
Sqlitetestsse_Init(interp);