ref: 4af636fad493a0d2f5f2e10b3c4d72ad2c0a29a7 dir: /libnpe/isatty.c/
#include <unistd.h> #include "_npe.h" int isatty(int fd) { char buf[64]; return fd2path(fd, buf, sizeof(buf)) == 0 && strcmp(buf, "/dev/cons") == 0; }