URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [branches/] [newlib/] [newlib/] [newlib/] [libc/] [sys/] [sysvi386/] [isatty.c] - Rev 39
Go to most recent revision | Compare with Previous | Blame | View Log
#include <sys/termio.h> int isatty(fd) int fd; { struct termio buf; if (ioctl (fd, TCGETA, &buf) == -1) return 0; return 1; }
Go to most recent revision | Compare with Previous | Blame | View Log