sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / games / vessel / isatty.c
blob38ee2b6ce2e86bb6d4f31bf6f9aff9de3e98b0ca
1 // We override isatty to help 'automate' installers.
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.
6 int isatty(int fd) { return 1; }