[Python-checkins] r85237 - in python/branches/release31-maint: Python/dup2.c

amaury.forgeotdarc python-checkins at python.org
Wed Oct 6 00:18:29 CEST 2010


Author: amaury.forgeotdarc
Date: Wed Oct  6 00:18:29 2010
New Revision: 85237

Log:
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.
........


Modified:
   python/branches/release31-maint/   (props changed)
   python/branches/release31-maint/Python/dup2.c

Modified: python/branches/release31-maint/Python/dup2.c
==============================================================================
--- python/branches/release31-maint/Python/dup2.c	(original)
+++ python/branches/release31-maint/Python/dup2.c	Wed Oct  6 00:18:29 2010
@@ -12,6 +12,7 @@
  */
 
 #include <fcntl.h>
+#include <unistd.h>
 
 #define BADEXIT -1
 


More information about the Python-checkins mailing list