repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
sdrangel: fix build on x86_64-darwin
[NixPkgs.git]
/
pkgs
/
games
/
vessel
/
isatty.c
blob
38ee2b6ce2e86bb6d4f31bf6f9aff9de3e98b0ca
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
6
int
isatty
(
int
fd
) {
return
1
; }