diff options
Diffstat (limited to 'src/test4.c')
-rw-r--r-- | src/test4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test4.c b/src/test4.c index 4a47d2f86..622ca93bf 100644 --- a/src/test4.c +++ b/src/test4.c @@ -11,11 +11,11 @@ ************************************************************************* ** Code for testing the the SQLite library in a multithreaded environment. ** -** $Id: test4.c,v 1.21 2007/08/22 11:41:18 drh Exp $ +** $Id: test4.c,v 1.22 2008/06/26 10:41:19 danielk1977 Exp $ */ #include "sqliteInt.h" #include "tcl.h" -#if defined(OS_UNIX) && OS_UNIX==1 && SQLITE_THREADSAFE +#if defined(SQLITE_OS_UNIX) && OS_UNIX==1 && SQLITE_THREADSAFE #include <stdlib.h> #include <string.h> #include <pthread.h> @@ -713,4 +713,4 @@ int Sqlitetest4_Init(Tcl_Interp *interp){ } #else int Sqlitetest4_Init(Tcl_Interp *interp){ return TCL_OK; } -#endif /* OS_UNIX */ +#endif /* SQLITE_OS_UNIX */ |