diff options
author | drh <drh@noemail.net> | 2006-01-06 21:52:49 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2006-01-06 21:52:49 +0000 |
commit | 198bf391287b72ce27348e48d2e8cc2848c34c03 (patch) | |
tree | a233cf7a63d02b5399a1b97cd5f9eabe045b9114 /src/os_unix.c | |
parent | 9e9fe6f87717465d9d05608dba4833a5b1bfae61 (diff) | |
download | sqlite-198bf391287b72ce27348e48d2e8cc2848c34c03.tar.gz sqlite-198bf391287b72ce27348e48d2e8cc2848c34c03.zip |
Changes so that SQLITE_OMIT_PARSER and SQLITE_OMIT_DISKIO work. (CVS 2878)
FossilOrigin-Name: 9d71b7deaffdd7eb9ddad1f03df3e4c51c2cbd98
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 26eb7039c..fa0cc1f9e 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -107,6 +107,11 @@ struct unixFile { /* +** 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 ** will be in-memory only) @@ -142,11 +147,6 @@ struct unixFile { #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. */ |