commit | ab9d9535aad5e627cb9ae471f186e27a65e48c6e | [log] [tgz] |
---|---|---|
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | Mon May 18 09:42:14 2020 -0700 |
committer | GitHub <noreply@github.com> | Mon May 18 09:42:14 2020 -0700 |
tree | 8a8fc6e4047c5bd5ac99c9e08b99670db9c734a3 | |
parent | ddd5bbdeec8cf18ef074b3506c96d22ac3dc1f93 [diff] [blame] |
bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) (cherry picked from commit f660567937277cc3a2cd53af77bbb18e905427e8) Co-authored-by: Minmin Gong <gongminmin@msn.com>
diff --git a/Python/pytime.c b/Python/pytime.c index 9ff3006..109d526 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__)