diff options
author | drh <> | 2024-07-31 22:25:25 +0000 |
---|---|---|
committer | drh <> | 2024-07-31 22:25:25 +0000 |
commit | 5addf9f1117567821c6cad070671a2a03b8bbeab (patch) | |
tree | 66e44b1a356c2b11c2b4920fece2f94466185384 /src/tclsqlite.c | |
parent | d888e79bb8a8efc75245fe337fd1d6c4d6266b31 (diff) | |
download | sqlite-5addf9f1117567821c6cad070671a2a03b8bbeab.tar.gz sqlite-5addf9f1117567821c6cad070671a2a03b8bbeab.zip |
Make the #include section of tclsqlite.c the same as tclsqlite.h.
FossilOrigin-Name: 2afadbeb124d6d7bb81d473379269014ebd8601f98f231e2218f54350a2e5fd3
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 55084687a..906f429ab 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -39,7 +39,7 @@ #if defined(INCLUDE_SQLITE_TCL_H) # include "sqlite_tcl.h" /* Special case for Windows using STDCALL */ #else -# include "tcl.h" /* All normal cases */ +# include <tcl.h> /* All normal cases */ # ifndef SQLITE_TCLAPI # define SQLITE_TCLAPI # endif |