From 6a1f54c09c6a94f5ac617e0f8c2329d73b329570 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Sun, 5 May 1991 20:15:54 +0000 Subject: [PATCH] Include sys/select.h for IBM R2 --- Modules/timemodule.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 738887d5c1f..8a18843758c 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 +#endif + long millitimer() {