diff options
author | Guido van Rossum <guido@python.org> | 1992-06-12 10:39:22 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1992-06-12 10:39:22 (GMT) |
commit | dfd6e4677944172e98a3d04d4e9a7d440f0b1414 (patch) | |
tree | 085efb1c842fdd3354bd3c8610ddda6a01086987 /Modules/timemodule.c | |
parent | 047979e3d5d30feee560f98c9c8d65029a4cbe37 (diff) | |
download | cpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.zip cpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.tar.gz cpython-dfd6e4677944172e98a3d04d4e9a7d440f0b1414.tar.bz2 |
Fix for SEQUENT by Jaap Vermeulen
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 * |