Differences From Artifact [b4a2d63888]:
- File src/config.h — part of check-in [dbda8d6ce9] at 2007-07-21 14:10:57 on branch trunk — Initial check-in of m1 sources. (user: drh size: 3326) [more...]
To Artifact [b652b900e9]:
- File src/config.h — part of check-in [ab0a0d7640] at 2010-01-19 18:11:57 on branch clear-title — Start a new branch that strives to contain only code for which we hold clear title. (user: drh size: 3399)
| ︙ | |||
30 31 32 33 34 35 36 37 38 39 40 41 42 43 | 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | + + + + + + | #include <unistd.h> #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <string.h> #include <stdarg.h> #include <assert.h> #ifdef __MINGW32__ # include <windows.h> #else # include <pwd.h> #endif #include "sqlite3.h" /* ** Typedef for a 64-bit integer */ typedef sqlite_int64 i64; typedef sqlite_uint64 u64; |
| ︙ |