Kaydet (Commit) 0bb1a519 authored tarafından Guido van Rossum's avatar Guido van Rossum

AIX fix.

üst 3c28474e
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment