8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
6 lines
218 B
C
6 lines
218 B
C
// 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; }
|