mirror of
https://github.com/AdaCore/cpython.git
synced 2026-02-12 12:57:15 -08:00
Added isatty() for MPW.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user