ref: c987c7dcb71bb3fd9d5388f5573209ae63f52f38 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; }