diff options
author | Guido van Rossum <guido@python.org> | 1991-05-05 20:15:54 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1991-05-05 20:15:54 (GMT) |
commit | 6a1f54c09c6a94f5ac617e0f8c2329d73b329570 (patch) | |
tree | e5c4d9e51947f2bb041916bf1afc9ee356a3ac5c /Modules | |
parent | eb4361af6cd3770c18db9307f0b4112c72679225 (diff) | |
download | cpython-6a1f54c09c6a94f5ac617e0f8c2329d73b329570.zip cpython-6a1f54c09c6a94f5ac617e0f8c2329d73b329570.tar.gz cpython-6a1f54c09c6a94f5ac617e0f8c2329d73b329570.tar.bz2 |
Include sys/select.h for IBM R2
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 738887d..8a18843 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -230,6 +230,11 @@ millitimer() #ifdef BSD_TIME +#ifdef _IBMR2 +/* AIX defines fd_set in a separate file. Sigh... */ +#include <sys/select.h> +#endif + long millitimer() { |