| 6002 | } |
| 6003 | |
| 6004 | static int isatty(int fd) |
| 6005 | { |
| 6006 | struct termios buf; |
| 6007 | if (ioctl(fd, TCGETS, &buf) < 0) |
| 6008 | { |
| 6009 | if (errno == EINVAL) |
| 6010 | errno = ENOTTY; |
| 6011 | return 0; |
| 6012 | } |
| 6013 | return 1; |
| 6014 | } |
| 6015 | |
| 6016 | static int ttyname_r(int fd, char *buf, size_t buflen) |
| 6017 | { |