]> granicus.if.org Git - python/commitdiff
Include Windows.h for BOOL. 2.7 and 3.2 already had this due to
authorBrian Curtin <brian.curtin@gmail.com>
Fri, 6 Aug 2010 19:52:50 +0000 (19:52 +0000)
committerBrian Curtin <brian.curtin@gmail.com>
Fri, 6 Aug 2010 19:52:50 +0000 (19:52 +0000)
a feature 3.1 doesn't have. Followup to #9324.

Modules/signalmodule.c

index 251e67ca115bb1a89d0b5eba3b52edd54b340f6e..e9abec437de583d165bbec204a0b4951583cbfba 100644 (file)
@@ -7,8 +7,11 @@
 #include "intrcheck.h"
 
 #ifdef MS_WINDOWS
+#include <Windows.h>
+#ifdef HAVE_PROCESS_H
 #include <process.h>
 #endif
+#endif
 
 #include <signal.h>