mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-05 04:30:38 +03:00
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
This commit is contained in:
@@ -12,12 +12,12 @@
|
||||
**
|
||||
** This file contains code that is specific to OS/2.
|
||||
**
|
||||
** $Id: os_os2.c,v 1.46 2008/06/25 17:19:01 danielk1977 Exp $
|
||||
** $Id: os_os2.c,v 1.47 2008/06/26 10:41:19 danielk1977 Exp $
|
||||
*/
|
||||
|
||||
#include "sqliteInt.h"
|
||||
|
||||
#if OS_OS2
|
||||
#if SQLITE_OS_OS2
|
||||
|
||||
/*
|
||||
** A Note About Memory Allocation:
|
||||
@@ -1077,4 +1077,4 @@ int sqlite3_os_end(void){
|
||||
return SQLITE_OK;
|
||||
}
|
||||
|
||||
#endif /* OS_OS2 */
|
||||
#endif /* SQLITE_OS_OS2 */
|
||||
|
||||
Reference in New Issue
Block a user