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