Added isatty() for MPW.
This commit is contained in:
parent
054ff1f29e
commit
e6c67a7263
|
@ -425,6 +425,16 @@ isatty(fd)
|
||||||
return fd == fileno(stdin);
|
return fd == fileno(stdin);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef macintosh
|
||||||
|
/* same */
|
||||||
|
int
|
||||||
|
isatty(fd)
|
||||||
|
int fd;
|
||||||
|
{
|
||||||
|
return fd == fileno(stdin);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* XXX WISH LIST
|
/* XXX WISH LIST
|
||||||
|
|
Loading…
Reference in New Issue