nixpkgs/pkgs/games/vessel/isatty.c
2012-12-16 23:24:31 -08:00

7 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; }