diff options
author | Erik Janssens <erik.janssens@conceptive.be> | 2018-08-16 06:40:50 (GMT) |
---|---|---|
committer | INADA Naoki <methane@users.noreply.github.com> | 2018-08-16 06:40:50 (GMT) |
commit | e6a4755e6793942b950c1595e0c34bd66a0ee13e (patch) | |
tree | 532f4e5c02d47b54e59ab0387a29f16c5a3cb2fc /Modules | |
parent | 67b9cc8e6072a919d2ed7e7ecc8124c8acfb3733 (diff) | |
download | cpython-e6a4755e6793942b950c1595e0c34bd66a0ee13e.zip cpython-e6a4755e6793942b950c1595e0c34bd66a0ee13e.tar.gz cpython-e6a4755e6793942b950c1595e0c34bd66a0ee13e.tar.bz2 |
bpo-34217: Use lowercase for windows headers (GH-8472)
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_io/_iomodule.c | 2 | ||||
-rw-r--r-- | Modules/socketmodule.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Modules/_io/_iomodule.c b/Modules/_io/_iomodule.c index 6674465..0d8a638 100644 --- a/Modules/_io/_iomodule.c +++ b/Modules/_io/_iomodule.c @@ -21,7 +21,7 @@ #endif /* HAVE_SYS_STAT_H */ #ifdef MS_WINDOWS -#include <Windows.h> +#include <windows.h> #endif /* Various interned strings */ diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 3000175..3a439c4 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -303,7 +303,7 @@ http://cvsweb.netbsd.org/bsdweb.cgi/src/lib/libc/net/getaddrinfo.c.diff?r1=1.82& # endif /* Provides the IsWindows7SP1OrGreater() function */ -#include <VersionHelpers.h> +#include <versionhelpers.h> /* remove some flags on older version Windows during run-time. https://msdn.microsoft.com/en-us/library/windows/desktop/ms738596.aspx */ |