From: Guido van Rossum Date: Mon, 29 Aug 1994 10:43:12 +0000 (+0000) Subject: MPW changes X-Git-Tag: v1.1~154 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba941eba679f2ea645e00411a8a40553840e4b54;p=thirdparty%2FPython%2Fcpython.git MPW changes --- diff --git a/Python/dup2.c b/Python/dup2.c index ee1a7ad690d4..85ec5d5e5f33 100644 --- a/Python/dup2.c +++ b/Python/dup2.c @@ -20,17 +20,12 @@ dup2(fd1, fd2) int fd1, fd2; { if (fd1 != fd2) { -#ifdef MPW - close (fd2); /* XXX RJW MPW does not implement F_GETFL but it does have dup */ - fd2 = dup(fd1); -#else if (fcntl(fd1, F_GETFL) < 0) return BADEXIT; if (fcntl(fd2, F_GETFL) >= 0) close(fd2); if (fcntl(fd1, F_DUPFD, fd2) < 0) return BADEXIT; -#endif } return fd2; }