ack/plat/pdpv7/libsys/isatty.c

9 lines
125 B
C
Raw Normal View History

int isatty(int fd)
{
unsigned u;
if (ioctl(fd, /*TIOCGETD*/(('t'<<8)|0), &u) < 0)
return 0;
return 1;
}