diff options
author | drh <drh@noemail.net> | 2013-04-25 14:31:46 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2013-04-25 14:31:46 +0000 |
commit | e50db1c5d25a284b30964cf64e69a02866db97b0 (patch) | |
tree | 59bcf042a6427a3d9d13b60f3e388719000f81e4 /src/tclsqlite.c | |
parent | 24b6422dcb66ec9ad8828b2a65e6e5afc224be22 (diff) | |
download | sqlite-e50db1c5d25a284b30964cf64e69a02866db97b0.tar.gz sqlite-e50db1c5d25a284b30964cf64e69a02866db97b0.zip |
Convert the fuzzer virtual table into a loadable extension and move it
to the ext/misc/fuzzer.c file.
FossilOrigin-Name: c8c69307f60c1d07ac666ae3797b7e3f286fd491
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index adacc34a1..f1bb2921d 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -3683,7 +3683,6 @@ 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 Sqlitetestfuzzer_Init(Tcl_Interp*); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) extern int Sqlitetestfts3_Init(Tcl_Interp *interp); @@ -3726,7 +3725,6 @@ static void init_all(Tcl_Interp *interp){ Sqlitemultiplex_Init(interp); SqliteSuperlock_Init(interp); SqlitetestSyscall_Init(interp); - Sqlitetestfuzzer_Init(interp); #if defined(SQLITE_ENABLE_FTS3) || defined(SQLITE_ENABLE_FTS4) Sqlitetestfts3_Init(interp); |