diff options
author | danielk1977 <danielk1977@noemail.net> | 2005-11-25 09:01:23 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2005-11-25 09:01:23 +0000 |
commit | 26c5d79f6027e0dcc4c86679f854f18e5185edf7 (patch) | |
tree | 893cf9c230a7347511741a0457b93606dbfc2a6a /src/os_unix.c | |
parent | 0964b23a9914cfbbb6408936be61e95bdb4997c9 (diff) | |
download | sqlite-26c5d79f6027e0dcc4c86679f854f18e5185edf7.tar.gz sqlite-26c5d79f6027e0dcc4c86679f854f18e5185edf7.zip |
If SQLITE_DISABLE_LFS is defined, omit the bigfile tests. (CVS 2781)
FossilOrigin-Name: f882a516da18f45dbb668078d0d8240d930e1180
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index b37a90794..483075c83 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -51,7 +51,7 @@ ** The DJGPP compiler environment looks mostly like Unix, but it ** lacks the fcntl() system call. So redefine fcntl() to be something ** that always succeeds. This means that locking does not occur under -** DJGPP. But its DOS - what did you expect? +** DJGPP. But it's DOS - what did you expect? */ #ifdef __DJGPP__ # define fcntl(A,B,C) 0 |