authorgravatar for IridescentRosesFall@gmail.comNathan Bourgeois <IridescentRosesFall@gmail.com> 2020-10-17 21:13:10-04:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-10-17 21:13:10-04:00
loge55244c4c64830d2830dea81ab6011b61c188d25
tree32c4907becc4880b5072eb13be06df235780ec4a
parentb014bc77c8c5b89a8c0b5d4a995726ec6b350939
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

BYOS support for system.isatty(fd: fd_t); (#6686)


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os.zig+1-1
...@@ -2588,7 +2588,7 @@ pub fn isatty(handle: fd_t) bool {...@@ -2588,7 +2588,7 @@ pub fn isatty(handle: fd_t) bool {
2588 }2588 }
2589 }2589 }
2590 }2590 }
2591 unreachable;2591 return system.isatty(handle) != 0;
2592}2592}
25932593
2594pub fn isCygwinPty(handle: fd_t) bool {2594pub fn isCygwinPty(handle: fd_t) bool {