diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-04 13:33:00 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-04 13:33:00 (GMT) |
commit | c36625b05df8cf35946a16c1e47faac4d5b5ea00 (patch) | |
tree | 8985757b5009c9efd3811450cb714ea51f596015 /Modules/errnomodule.c | |
parent | 8fd7b0c1a790158a2ab42f70c6c16636f75a4de8 (diff) | |
download | cpython-c36625b05df8cf35946a16c1e47faac4d5b5ea00.zip cpython-c36625b05df8cf35946a16c1e47faac4d5b5ea00.tar.gz cpython-c36625b05df8cf35946a16c1e47faac4d5b5ea00.tar.bz2 |
Some VS 6.0 compatibility fixes from Hirokazu Yamamoto which are also useful for later versions of MSVC. VS6 claims that fortran is a reserved word
Diffstat (limited to 'Modules/errnomodule.c')
-rw-r--r-- | Modules/errnomodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/errnomodule.c b/Modules/errnomodule.c index b1beb00..ab4b5f1 100644 --- a/Modules/errnomodule.c +++ b/Modules/errnomodule.c @@ -5,6 +5,7 @@ /* Windows socket errors (WSA*) */ #ifdef MS_WINDOWS +#define WIN32_LEAN_AND_MEAN #include <winsock.h> #endif |