diff options
author | Minmin Gong <gongminmin@msn.com> | 2020-05-18 09:22:53 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 17:22:53 +0100 |
commit | f660567937277cc3a2cd53af77bbb18e905427e8 (patch) | |
tree | 9b6c97dde19f448675440e65af26f62fda6cbd81 /Python | |
parent | 7f21c9ac872acc2114aee3313d132b016550ff42 (diff) | |
download | cpython-git-f660567937277cc3a2cd53af77bbb18e905427e8.tar.gz |
bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137)
Diffstat (limited to 'Python')
-rw-r--r-- | Python/pytime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pytime.c b/Python/pytime.c index 6affccbeff..b121b432f4 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -1,6 +1,6 @@ #include "Python.h" #ifdef MS_WINDOWS -#include <windows.h> +#include <winsock2.h> /* struct timeval */ #endif #if defined(__APPLE__) |