Added isatty() for MPW.

This commit is contained in:
Guido van Rossum 1991-04-04 10:47:59 +00:00
parent 054ff1f29e
commit e6c67a7263
1 changed files with 10 additions and 0 deletions

View File

@ -425,6 +425,16 @@ isatty(fd)
return fd == fileno(stdin);
}
#ifdef macintosh
/* same */
int
isatty(fd)
int fd;
{
return fd == fileno(stdin);
}
#endif
#endif
/* XXX WISH LIST