blob: 38ee2b6ce2e86bb6d4f31bf6f9aff9de3e98b0ca (
plain) (
blame)
1
2
3
4
5
6
|
// We override isatty to help 'automate' installers.
// Some installers (mojoinstall) have a stdio GUI that refuses to run if you
// feed it a file on stdin. This should help that.
int isatty(int fd) { return 1; }
|