diff options
author | Guido van Rossum <guido@python.org> | 2001-03-02 06:53:29 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-03-02 06:53:29 (GMT) |
commit | 258ccd41264f3a77a767553240641a90e3ab5f0b (patch) | |
tree | cde4e6664622c8cc2925eb057092a4d1a2df3bf3 /Modules/timemodule.c | |
parent | dedbebf9f8e19a94804d0d508df463b74a333d71 (diff) | |
download | cpython-258ccd41264f3a77a767553240641a90e3ab5f0b.zip cpython-258ccd41264f3a77a767553240641a90e3ab5f0b.tar.gz cpython-258ccd41264f3a77a767553240641a90e3ab5f0b.tar.bz2 |
Fix typo in RISCOS patch inside MS #ifdef. (Probably my own fingers.)
Diffstat (limited to 'Modules/timemodule.c')
-rw-r--r-- | Modules/timemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/timemodule.c b/Modules/timemodule.c index a58f155..c4a066f 100644 --- a/Modules/timemodule.c +++ b/Modules/timemodule.c @@ -40,7 +40,7 @@ extern int ftime(struct timeb *); #include <i86.h> #else #ifdef MS_WINDOWS -include <windows.h> +#include <windows.h> #ifdef MS_WIN16 /* These overrides not needed for Win32 */ #define timezone _timezone |