aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2007-08-21 10:44:15 +0000
committerdrh <drh@noemail.net>2007-08-21 10:44:15 +0000
commit29278e3dbb1873330cbb6203d934048b281cf2e9 (patch)
tree5dac1610c2b7b46018e806594f5d2e20a3781cc6 /src/tclsqlite.c
parenta2451e225541319456d28131f661783f16d5799f (diff)
downloadsqlite-29278e3dbb1873330cbb6203d934048b281cf2e9.tar.gz
sqlite-29278e3dbb1873330cbb6203d934048b281cf2e9.zip
Remove unnecessary #includes of "os.h". New mutex implementations. (CVS 4255)
FossilOrigin-Name: fbbd5bda544ffec4e1b43407b12e546235dc7873
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index d3fbc375a..c462900cd 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.195 2007/08/15 19:16:43 drh Exp $
+** $Id: tclsqlite.c,v 1.196 2007/08/21 10:44:16 drh Exp $
*/
#include "tcl.h"
#include <errno.h>
@@ -23,7 +23,6 @@
*/
#ifndef SQLITE_AMALGAMATION
# include "sqliteInt.h"
-# include "hash.h"
# include <stdlib.h>
# include <string.h>
# include <assert.h>