diff options
author | drh <drh@noemail.net> | 2007-12-13 18:29:35 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2007-12-13 18:29:35 +0000 |
commit | f78fbded4cbf819b4edfc98826e6edf1de6c0e3b (patch) | |
tree | 6f164dbdd5c9dd353eafc6bda3b1946c7ee50b9d /src/test_thread.c | |
parent | b9fdb2c2f718d8b3ba9304d3f908e5f12e8ccc95 (diff) | |
download | sqlite-f78fbded4cbf819b4edfc98826e6edf1de6c0e3b.tar.gz sqlite-f78fbded4cbf819b4edfc98826e6edf1de6c0e3b.zip |
Fix the location of a #include in test_thread.c. ticket #2826. (CVS 4627)
FossilOrigin-Name: 6129fce873da5adb05473129e610198a30e43ac8
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 - |