From dfd6e4677944172e98a3d04d4e9a7d440f0b1414 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 12 Jun 1992 10:39:22 +0000 Subject: Fix for SEQUENT by Jaap Vermeulen --- Modules/timemodule.c | 8 ++++++++ 1 file changed, 8 insertions(+) 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 #endif +#ifdef _SEQUENT_ +#include +struct timezone { + int tz_minuteswest; + int tz_dsttime; +}; +#endif + /* Time methods */ static object * -- cgit v0.12