mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
bpo-44321: Adds os.EX_OK for Windows (GH-26559)
This commit is contained in:
parent
0acc258fe6
commit
19459f8ce6
2 changed files with 7 additions and 2 deletions
|
|
@ -23,6 +23,10 @@
|
|||
# include <pathcch.h>
|
||||
#endif
|
||||
|
||||
#if !defined(EX_OK) && defined(EXIT_SUCCESS)
|
||||
#define EX_OK EXIT_SUCCESS
|
||||
#endif
|
||||
|
||||
#ifdef __VXWORKS__
|
||||
# include "pycore_bitutils.h" // _Py_popcount32()
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue