diff options
author | Darren Tucker <dtucker@zip.com.au> | 2006-08-24 19:43:16 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2006-08-24 19:43:16 +1000 |
commit | e086955531ffef96bc15d51a07f25ae65804dc1c (patch) | |
tree | b6bd23411e31089c12c95bdf05009e4491bea2c2 /openbsd-compat | |
parent | fe408b4826f92b96976b46dec02218bd66dfc6e1 (diff) |
- (dtucker) [openbsd-compat/bsd-misc.c] Add includes needed for select(2) on
older systems.
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bsd-misc.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c index e6128f9a7..c6b80365c 100644 --- a/openbsd-compat/bsd-misc.c +++ b/openbsd-compat/bsd-misc.c | |||
@@ -17,8 +17,13 @@ | |||
17 | 17 | ||
18 | #include "includes.h" | 18 | #include "includes.h" |
19 | 19 | ||
20 | #ifdef HAVE_SYS_TIME_H | ||
21 | # include <sys/time.h> | ||
22 | #endif | ||
23 | |||
20 | #include <string.h> | 24 | #include <string.h> |
21 | #include <signal.h> | 25 | #include <signal.h> |
26 | #include <stdlib.h> | ||
22 | 27 | ||
23 | #include "xmalloc.h" | 28 | #include "xmalloc.h" |
24 | 29 | ||