1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-15 11:41:13 +03:00

Fix the location of a #include in test_thread.c. ticket #2826. (CVS 4627)

FossilOrigin-Name: 6129fce873da5adb05473129e610198a30e43ac8
This commit is contained in:
drh
2007-12-13 18:29:35 +00:00
parent b9fdb2c2f7
commit f78fbded4c
3 changed files with 10 additions and 11 deletions

View File

@@ -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