diff options
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index e7bf151..d969b3f 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -68,6 +68,14 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include <errno.h> #endif +#ifdef _SEQUENT_ +#include <sys/select.h> +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; +#endif + /* Time methods */ static object * |