diff options
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index ab6ed58..c09a3ff 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -1566,18 +1566,6 @@ initsigs(void) PyOS_InitInterrupts(); /* May imply initsignal() */ } -#ifdef MPW - -/* Check for file descriptor connected to interactive device. - Pretend that stdin is always interactive, other files never. */ - -int -isatty(int fd) -{ - return fd == fileno(stdin); -} - -#endif /* * The file descriptor fd is considered ``interactive'' if either |