From: Brian Curtin Date: Fri, 6 Aug 2010 19:52:50 +0000 (+0000) Subject: Include Windows.h for BOOL. 2.7 and 3.2 already had this due to X-Git-Tag: v3.1.3rc1~382 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b42a21df1102a4ca833cf50d7caeda9391a8a54a;p=thirdparty%2FPython%2Fcpython.git Include Windows.h for BOOL. 2.7 and 3.2 already had this due to a feature 3.1 doesn't have. Followup to #9324. --- diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index 251e67ca115b..e9abec437de5 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -7,8 +7,11 @@ #include "intrcheck.h" #ifdef MS_WINDOWS +#include +#ifdef HAVE_PROCESS_H #include #endif +#endif #include