#include #include int isatty(int fd) { struct termios t; return tcgetattr(fd, &t) == 0; }