From: Benjamin Peterson Date: Wed, 6 Sep 2017 03:45:48 +0000 (-0700) Subject: pytime: include winsock2, so we can have a complete timeval type (#3377) X-Git-Tag: v3.7.0a1~139 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=833860615bedfd2484ac0623d6f01ff0578ba09f;p=python pytime: include winsock2, so we can have a complete timeval type (#3377) --- diff --git a/Python/pytime.c b/Python/pytime.c index 8979adc219..b7d6e84101 100644 --- a/Python/pytime.c +++ b/Python/pytime.c @@ -1,6 +1,7 @@ #include "Python.h" #ifdef MS_WINDOWS #include +#include /* struct timeval */ #endif #if defined(__APPLE__)