From f660567937277cc3a2cd53af77bbb18e905427e8 Mon Sep 17 00:00:00 2001 From: Minmin Gong Date: Mon, 18 May 2020 09:22:53 -0700 Subject: bpo-40650: Include winsock2.h in pytime.c, instead of a full windows.h (GH-20137) --- Python/pytime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pytime.c') 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 +#include /* struct timeval */ #endif #if defined(__APPLE__) -- cgit v1.2.1