This commit is contained in:
Guido van Rossum 1991-11-27 14:55:18 +00:00
parent 3c28474ea2
commit 0bb1a51925
2 changed files with 3 additions and 2 deletions

View File

@ -78,7 +78,8 @@ Socket methods:
#include <sys/un.h>
#include <netdb.h>
#ifdef _AIX /* I *think* this works */
#include <select.h> /* Needed for fd_set */
/* AIX defines fd_set in a separate file. Sigh... */
#include <sys/select.h>
#endif

View File

@ -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 <sys/select.h>
#endif