bpo-36965: Fix includes in main.c on Windows with non-MSC compilers (GH-13421)
Include windows.h rather than crtdbg.h to get STATUS_CONTROL_C_EXIT constant. Moreover, include windows.h on Windows, not only when MSC is used.
This commit is contained in:
parent
e7cb23bf20
commit
925af1d99b
|
@ -0,0 +1 @@
|
|||
include of STATUS_CONTROL_C_EXIT without depending on MSC compiler
|
|
@ -18,8 +18,8 @@
|
|||
#if defined(HAVE_GETPID) && defined(HAVE_UNISTD_H)
|
||||
# include <unistd.h> /* getpid() */
|
||||
#endif
|
||||
#ifdef _MSC_VER
|
||||
# include <crtdbg.h> /* STATUS_CONTROL_C_EXIT */
|
||||
#ifdef MS_WINDOWS
|
||||
# include <windows.h> /* STATUS_CONTROL_C_EXIT */
|
||||
#endif
|
||||
/* End of includes for exit_sigint() */
|
||||
|
||||
|
|
Loading…
Reference in New Issue