diff options
author | drh <drh@noemail.net> | 2004-10-01 02:00:31 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-10-01 02:00:31 +0000 |
commit | eb206256f1fac9b79fde3375f3670c5ecb52f11b (patch) | |
tree | 88fdcce79a1ac7d3c59620c4222e094397c6d20c /src/os_mac.c | |
parent | a3f70cbc313f245c53696a08c1d27fdbcd41df97 (diff) | |
download | sqlite-eb206256f1fac9b79fde3375f3670c5ecb52f11b.tar.gz sqlite-eb206256f1fac9b79fde3375f3670c5ecb52f11b.zip |
Use type i64 instead of off_t for file offsets since off_t is giving
portability problems. Ticket #924. (CVS 1992)
FossilOrigin-Name: 8972c004dc825f668d952e7d082a89046b9260f1
Diffstat (limited to 'src/os_mac.c')
-rw-r--r-- | src/os_mac.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os_mac.c b/src/os_mac.c index cb714de73..f84c168d4 100644 --- a/src/os_mac.c +++ b/src/os_mac.c @@ -13,9 +13,9 @@ ** This file contains code that is specific classic mac. Mac OS X ** uses the os_unix.c file, not this one. */ -#include "os.h" /* Must be first to enable large file support */ -#if OS_MAC /* This file used on classic mac only */ #include "sqliteInt.h" +#include "os.h" +#if OS_MAC /* This file used on classic mac only */ #include <extras.h> #include <path2fss.h> |