diff options
author | Guido van Rossum <guido@python.org> | 1995-03-14 15:05:41 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-14 15:05:41 (GMT) |
commit | cc08112ff4985b0d400acf50de7389ec27362f53 (patch) | |
tree | af01b84dd755c5a15c2988653b674dc63d4a3894 /Modules | |
parent | 6b14491bb4d0ef0ec7e7dbc8ec60356fae564177 (diff) | |
download | cpython-cc08112ff4985b0d400acf50de7389ec27362f53.zip cpython-cc08112ff4985b0d400acf50de7389ec27362f53.tar.gz cpython-cc08112ff4985b0d400acf50de7389ec27362f53.tar.bz2 |
tiny additions for Windows 3.1
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/timemodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index 90a10eb..f773835 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -55,6 +55,9 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #ifdef _M_IX86 #include <windows.h> #define timezone _timezone +#define tzname _tzname +#define daylight _daylight +#define altzone _altzone #endif /* Forward declarations */ |