diff options
author | mistachkin <mistachkin@noemail.net> | 2016-07-28 14:37:04 +0000 |
---|---|---|
committer | mistachkin <mistachkin@noemail.net> | 2016-07-28 14:37:04 +0000 |
commit | 52b1dbb5fc949a629d7213661c968c722b9e5029 (patch) | |
tree | f848086e4c79a2761c2e1e2ece243333a6ab4cd8 /src/test_autoext.c | |
parent | 69def7ff2f872b3c7579d93843ba504e61dc2b2f (diff) | |
download | sqlite-52b1dbb5fc949a629d7213661c968c722b9e5029.tar.gz sqlite-52b1dbb5fc949a629d7213661c968c722b9e5029.zip |
Allow the 'testfixture.exe' target to be compiled with the __stdcall calling convention.
FossilOrigin-Name: e8be3dfeabaa31b3490793cf8230faae1204be15
Diffstat (limited to 'src/test_autoext.c')
-rw-r--r-- | src/test_autoext.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/test_autoext.c b/src/test_autoext.c index a5236d239..b536cd732 100644 --- a/src/test_autoext.c +++ b/src/test_autoext.c @@ -11,7 +11,11 @@ ************************************************************************* ** Test extension for testing the sqlite3_auto_extension() function. */ -#include "tcl.h" +#if defined(INCLUDE_SQLITE_TCL_H) +# include "sqlite_tcl.h" +#else +# include "tcl.h" +#endif #include "sqlite3ext.h" #ifndef SQLITE_OMIT_LOAD_EXTENSION |