diff options
author | drh <> | 2024-07-31 21:59:29 +0000 |
---|---|---|
committer | drh <> | 2024-07-31 21:59:29 +0000 |
commit | 3f91c05e5d4574f641db5ab0f937707fa95b69ae (patch) | |
tree | 1e633b5e33cb8822beab23c855a533105cc8f85c /src/tclsqlite.h | |
parent | 47ce12d239ae699a4d361458130d624ec501c118 (diff) | |
download | sqlite-3f91c05e5d4574f641db5ab0f937707fa95b69ae.tar.gz sqlite-3f91c05e5d4574f641db5ab0f937707fa95b69ae.zip |
Use `<tcl.h>` instead of `"tcl.h"` to include the TCL interface.
FossilOrigin-Name: 4e32d4aed7c487ee9ed39a7e4486c2989a01781a3edbe9cdce52c6ed357f6366
Diffstat (limited to 'src/tclsqlite.h')
-rw-r--r-- | src/tclsqlite.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tclsqlite.h b/src/tclsqlite.h index ef63641bb..b9a948ef1 100644 --- a/src/tclsqlite.h +++ b/src/tclsqlite.h @@ -24,7 +24,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 |