From 41b986c35237ba0c05aac262fc31f4a40fb57c52 Mon Sep 17 00:00:00 2001 From: Amaury Forgeot d'Arc Date: Tue, 5 Oct 2010 22:21:03 +0000 Subject: Merged revisions 85236 via svnmerge from svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85236 | amaury.forgeotdarc | 2010-10-06 00:15:37 +0200 (mer., 06 oct. 2010) | 2 lines #9060 Let platforms without dup2() compile the replacement fonction without error. ........ --- Python/dup2.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/dup2.c b/Python/dup2.c index ba7413a..2579afd 100644 --- a/Python/dup2.c +++ b/Python/dup2.c @@ -12,6 +12,7 @@ */ #include +#include #define BADEXIT -1 -- cgit v0.12