Differences From Artifact [85dbb08d93]:
- File src/file.c — part of check-in [9242c09ff9] at 2012-11-23 10:35:29 on branch invalid-unicode — Disallow invalid unicode characters (user: jan.nijtmans size: 31839) [more...]
To Artifact [826843ae83]:
- File src/file.c — part of check-in [b963446708] at 2012-11-28 11:13:49 on branch trunk — Add a conditional #include in an attempt to get the build working on Cygwin. (user: drh size: 31887) [more...]
| ︙ | |||
34 35 36 37 38 39 40 41 42 43 44 45 46 47 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | + + + | ** On Windows, include the Platform SDK header file. */ #ifdef _WIN32 # include <direct.h> # include <windows.h> # include <sys/utime.h> #endif #ifdef __CYGWIN__ # include <sys/time.h> #endif /* ** The file status information from the most recent stat() call. ** ** Use _stati64 rather than stat on windows, in order to handle files ** larger than 2GB. */ |
| ︙ |