1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-16 18:29:56 +00:00

Fix isatty code to not use functions only defined if ev is enabled.

This commit is contained in:
Calvin Rose 2023-06-19 07:14:56 -05:00
parent 5a39a04a79
commit 63bb93fc07

View File

@ -1437,11 +1437,11 @@ JANET_CORE_FN(os_isatty,
FILE *f = (argc == 1) ? janet_getfile(argv, 0, NULL) : stdout;
#ifdef JANET_WINDOWS
int fd = _fileno(f);
if (fd == -1) janet_panicv(janet_ev_lasterr());
if (fd == -1) janet_panic("not a valid stream");
return janet_wrap_boolean(_isatty(fd));
#else
int fd = fileno(f);
if (fd == -1) janet_panicv(janet_ev_lasterr());
if (fd == -1) janet_panic(strerror(errno));
return janet_wrap_boolean(isatty(fd));
#endif
}