mirror of
https://github.com/python/cpython.git
synced 2025-07-24 11:44:31 +00:00
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
2 changed files with 3 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue