1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-10-25 20:58:26 +03:00

Changes so that SQLITE_OMIT_PARSER and SQLITE_OMIT_DISKIO work. (CVS 2878)

FossilOrigin-Name: 9d71b7deaffdd7eb9ddad1f03df3e4c51c2cbd98
This commit is contained in:
drh
2006-01-06 21:52:49 +00:00
parent 9e9fe6f877
commit 198bf39128
11 changed files with 116 additions and 104 deletions

View File

@@ -106,6 +106,11 @@ struct unixFile {
#endif
/*
** Include code that is common to all os_*.c files
*/
#include "os_common.h"
/*
** Do not include any of the File I/O interface procedures if the
** SQLITE_OMIT_DISKIO macro is defined (indicating that there database
@@ -141,11 +146,6 @@ struct unixFile {
# define fcntl(A,B,C) 0
#endif
/*
** Include code that is common to all os_*.c files
*/
#include "os_common.h"
/*
** The threadid macro resolves to the thread-id or to 0. Used for
** testing and debugging only.