4b5a7fee14
backend into shape. It now generates binaries --- no idea whether they work or not.
9 lines
95 B
C
9 lines
95 B
C
int isatty(int fd)
|
|
{
|
|
char* p;
|
|
|
|
if (gtty(fd, &p) < 0)
|
|
return 0;
|
|
return 1;
|
|
}
|