brainix/sources/nixpkgs/pkgs/games/vessel/isatty.c
2026-02-13 17:06:24 +09:00

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