diff options
Diffstat (limited to 'src/test_thread.c')
-rw-r--r-- | src/test_thread.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test_thread.c b/src/test_thread.c index 4bfc6492d..5ce7e2c4d 100644 --- a/src/test_thread.c +++ b/src/test_thread.c @@ -14,14 +14,14 @@ ** test that sqlite3 database handles may be concurrently accessed by ** multiple threads. Right now this only works on unix. ** -** $Id: test_thread.c,v 1.4 2007/09/10 10:53:02 danielk1977 Exp $ +** $Id: test_thread.c,v 1.5 2007/12/13 18:29:36 drh Exp $ */ #include "sqliteInt.h" +#include <tcl.h> #if SQLITE_THREADSAFE && defined(TCL_THREADS) -#include <tcl.h> #include <errno.h> #include <unistd.h> @@ -330,4 +330,3 @@ int SqlitetestThread_Init(Tcl_Interp *interp){ return TCL_OK; } #endif - |