summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-06-12 10:39:22 (GMT)
committerGuido van Rossum <guido@python.org>1992-06-12 10:39:22 (GMT)
commitdfd6e4677944172e98a3d04d4e9a7d440f0b1414 (patch)
tree085efb1c842fdd3354bd3c8610ddda6a01086987 /Modules
parent047979e3d5d30feee560f98c9c8d65029a4cbe37 (diff)
downloadcpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.zip
cpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.tar.gz
cpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.tar.bz2
Fix for SEQUENT by Jaap Vermeulen
Diffstat (limited to 'Modules')
-rw-r--r--Modules/timemodule.c8
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 *