aboutsummaryrefslogtreecommitdiff
path: root/src/tclsqlite.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-12-01 13:57:48 +0000
committerdrh <drh@noemail.net>2009-12-01 13:57:48 +0000
commit65e8c82e1a25c6edc0dd6f6823b2a2967501c7c2 (patch)
tree9c56f21e775a8de63a91042fd0b8791987337b32 /src/tclsqlite.c
parent3acb07d6c36ccf514072d091ddce89c7a71ccd31 (diff)
downloadsqlite-65e8c82e1a25c6edc0dd6f6823b2a2967501c7c2.tar.gz
sqlite-65e8c82e1a25c6edc0dd6f6823b2a2967501c7c2.zip
Changes to the TCL interface header to allow it to be compiled independently
from the amalgamation. FossilOrigin-Name: 58113932d93926b4aa037a7487105a55f883cd0a
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r--src/tclsqlite.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c
index 983477978..7048e4efb 100644
--- a/src/tclsqlite.c
+++ b/src/tclsqlite.c
@@ -33,10 +33,11 @@
** appended to the amalgamation.
*/
#ifndef SQLITE_AMALGAMATION
-# include "sqliteInt.h"
+# include "sqlite3.h"
# include <stdlib.h>
# include <string.h>
# include <assert.h>
+ typedef unsigned char u8;
#endif
#include <ctype.h>