From: Guido van Rossum Date: Wed, 27 Nov 1991 14:55:18 +0000 (+0000) Subject: AIX fix. X-Git-Tag: v0.9.8~729 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0bb1a51925d686964efd059ed03ee5fff35b0041;p=thirdparty%2FPython%2Fcpython.git AIX fix. --- diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 849eec41f60c..de38d6dbc162 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -78,7 +78,8 @@ Socket methods: #include #include #ifdef _AIX /* I *think* this works */ -#include /* Needed for fd_set */ +/* AIX defines fd_set in a separate file. Sigh... */ +#include #endif diff --git a/Modules/timemodule.c b/Modules/timemodule.c index a3bd383ee48d..848e3220af39 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -229,7 +229,7 @@ millitimer() #ifdef BSD_TIME -#ifdef _IBMR2 +#ifdef _AIX /* I *think* this works */ /* AIX defines fd_set in a separate file. Sigh... */ #include #endif