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_intarray.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_intarray.c')
-rw-r--r-- | src/test_intarray.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/test_intarray.c b/src/test_intarray.c index 70e34db3e..c27b4597c 100644 --- a/src/test_intarray.c +++ b/src/test_intarray.c @@ -270,7 +270,11 @@ SQLITE_API int sqlite3_intarray_bind( ** Everything below is interface for testing this module. */ #ifdef SQLITE_TEST -#include <tcl.h> +#if defined(INCLUDE_SQLITE_TCL_H) +# include "sqlite_tcl.h" +#else +# include "tcl.h" +#endif /* ** Routines to encode and decode pointers |