diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-26 10:41:19 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-26 10:41:19 +0000 |
commit | 29bafeabcdfd107d56ae4659e5905cf0c61c79ee (patch) | |
tree | 646fbc2d5623f7886ef6824c5029ccba38902c2d /src/os_unix.c | |
parent | 71bc31c68d1228c5ca8fcc6e50f5a77a91a06b97 (diff) | |
download | sqlite-29bafeabcdfd107d56ae4659e5905cf0c61c79ee.tar.gz sqlite-29bafeabcdfd107d56ae4659e5905cf0c61c79ee.zip |
Change the OS_XXX pre-processor symbols to SQLITE_OS_XXX. Symbols "OS_UNIX", "OS_WIN", "OS_WINCE", "OS_OS2" and "OS_OTHER" are now "SQLITE_OS_UNIX", "SQLITE_OS_WIN", "SQLITE_OS_WINCE", "SQLITE_OS_OS2" and "SQLITE_OS_OTHER", respectively. (CVS 5311)
FossilOrigin-Name: cdd4cf4ce2ab363ddc3f27c5e44896e17269a161
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index d65126762..fa03d33f4 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -12,10 +12,10 @@ ** ** This file contains code that is specific to Unix systems. ** -** $Id: os_unix.c,v 1.189 2008/06/25 17:19:01 danielk1977 Exp $ +** $Id: os_unix.c,v 1.190 2008/06/26 10:41:19 danielk1977 Exp $ */ #include "sqliteInt.h" -#if OS_UNIX /* This file is used on unix only */ +#if SQLITE_OS_UNIX /* This file is used on unix only */ /* #define SQLITE_ENABLE_LOCKING_STYLE 0 */ @@ -2811,4 +2811,4 @@ int sqlite3_os_end(void){ return SQLITE_OK; } -#endif /* OS_UNIX */ +#endif /* SQLITE_OS_UNIX */ |