Differences From Artifact [ec4cba7989]:
- File src/shell.c — part of check-in [c3e723e308] at 2013-06-29 15:26:16 on branch trunk — Bring in the latest SQLite 3.8.0 alpha version from upstream, for testing. (user: drh size: 104960)
To Artifact [783b92bbe6]:
- File src/shell.c — part of check-in [07463fbf02] at 2013-06-29 15:41:28 on branch trunk — Fix the build on windows by using "_pclose" instead of "pclose". (user: drh size: 104954)
| ︙ | |||
63 64 65 66 67 68 69 | 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | - + | #if defined(_WIN32) || defined(WIN32) # include <io.h> #define isatty(h) _isatty(h) #define access(f,m) _access((f),(m)) #undef popen #define popen(a,b) _popen((a),(b)) #undef pclose |
| ︙ |