diff options
-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() { |