diff options
author | drh <drh@noemail.net> | 2009-12-01 13:57:48 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2009-12-01 13:57:48 +0000 |
commit | 65e8c82e1a25c6edc0dd6f6823b2a2967501c7c2 (patch) | |
tree | 9c56f21e775a8de63a91042fd0b8791987337b32 /src/tclsqlite.c | |
parent | 3acb07d6c36ccf514072d091ddce89c7a71ccd31 (diff) | |
download | sqlite-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.c | 3 |
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> |