Differences From Artifact [c9987e5911]:
- File src/shell.c — part of check-in [d7736649cd] at 2012-08-25 01:48:56 on branch trunk — Update the built-in SQLite to the latest version from the SQLite trunk. (user: drh size: 96519) [more...]
To Artifact [4e319394db]:
- File src/shell.c — part of check-in [22806c5f59] at 2012-08-27 19:05:44 on branch trunk — Re-do part of [d89b99e383], which was lost by [d7736649cd] (user: jan.nijtmans size: 96546) [more...]
| ︙ | |||
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | + + | # define stifle_history(X) #endif #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 #define pclose(x) _pclose(x) #else /* Make sure isatty() has a prototype. */ extern int isatty(int); #endif |
| ︙ |