diff options
author | drh <drh@noemail.net> | 2004-04-26 14:10:20 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2004-04-26 14:10:20 +0000 |
commit | 3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708 (patch) | |
tree | 5d02b3a977c8d5e4f710a0c65b59923a3f2a863f /src/sqliteInt.h | |
parent | 9e572e608fd19ca7b173808061282304d16dd8b0 (diff) | |
download | sqlite-3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708.tar.gz sqlite-3aac2dd7bccac440b6cb97b7baf17c9c6c3c2708.zip |
Pager tests working. (CVS 1308)
FossilOrigin-Name: 910067a200c4b25b5d813a84146673d3d1c80952
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 4c2b64340..c3e3de6c0 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -11,13 +11,12 @@ ************************************************************************* ** Internal interface definitions for SQLite. ** -** @(#) $Id: sqliteInt.h,v 1.220 2004/02/25 13:47:33 drh Exp $ +** @(#) $Id: sqliteInt.h,v 1.221 2004/04/26 14:10:22 drh Exp $ */ #include "config.h" #include "sqlite.h" #include "hash.h" #include "parse.h" -#include "btree.h" #include <stdio.h> #include <stdlib.h> #include <string.h> @@ -96,6 +95,9 @@ ** ** cc '-DUINTPTR_TYPE=long long int' ... */ +#ifndef UINT64_TYPE +# define UINT64_TYPE unsigned long long int +#endif #ifndef UINT32_TYPE # define UINT32_TYPE unsigned int #endif @@ -115,6 +117,7 @@ # define INTPTR_TYPE long long # endif #endif +typedef UINT64_TYPE u64; /* 8-byte unsigned integer */ typedef UINT32_TYPE u32; /* 4-byte unsigned integer */ typedef UINT16_TYPE u16; /* 2-byte unsigned integer */ typedef UINT8_TYPE u8; /* 1-byte unsigned integer */ @@ -126,6 +129,7 @@ typedef unsigned INTPTR_TYPE uptr; /* Big enough to hold a pointer */ ** Defer sourcing vdbe.h until after the "u8" typedef is defined. */ #include "vdbe.h" +#include "btree.h" /* ** Most C compilers these days recognize "long double", don't they? |