diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index c5b1eccc0..35be76dfb 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -43,6 +43,14 @@ */ /* +** Make sure the Tcl calling convention macro is defined. This macro is +** only used by test code and Tcl integration code. +*/ +#ifndef SQLITE_TCLAPI +# define SQLITE_TCLAPI +#endif + +/* ** Make sure that rand_s() is available on Windows systems with MSVC 2005 ** or higher. */ |