diff options
| author | Guido van Rossum <guido@python.org> | 1991-05-05 20:15:54 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1991-05-05 20:15:54 +0000 |
| commit | 6a1f54c09c6a94f5ac617e0f8c2329d73b329570 (patch) | |
| tree | e5c4d9e51947f2bb041916bf1afc9ee356a3ac5c /Modules/timemodule.c | |
| parent | eb4361af6cd3770c18db9307f0b4112c72679225 (diff) | |
| download | cpython-git-6a1f54c09c6a94f5ac617e0f8c2329d73b329570.tar.gz | |
Include sys/select.h for IBM R2
Diffstat (limited to 'Modules/timemodule.c')
| -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 738887d5c1..8a18843758 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() { |
