diff options
author | Victor Stinner <vstinner@python.org> | 2021-10-13 13:03:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-13 13:03:35 (GMT) |
commit | 97308dfcdc0696e0b116c37386e2ff4d72e6c3f4 (patch) | |
tree | a827f813979840eb28c66d5b74ab6f653fe51207 /PC/msvcrtmodule.c | |
parent | 7cdc2a0f4b785327ad9d55312409a06e554df3d5 (diff) | |
download | cpython-97308dfcdc0696e0b116c37386e2ff4d72e6c3f4.zip cpython-97308dfcdc0696e0b116c37386e2ff4d72e6c3f4.tar.gz cpython-97308dfcdc0696e0b116c37386e2ff4d72e6c3f4.tar.bz2 |
bpo-45434: Move _Py_BEGIN_SUPPRESS_IPH to pycore_fileutils.h (GH-28922)
Diffstat (limited to 'PC/msvcrtmodule.c')
-rw-r--r-- | PC/msvcrtmodule.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PC/msvcrtmodule.c b/PC/msvcrtmodule.c index 0591497..1f78d99 100644 --- a/PC/msvcrtmodule.c +++ b/PC/msvcrtmodule.c @@ -17,6 +17,7 @@ ***********************************************************/ #include "Python.h" +#include "pycore_fileutils.h" // _Py_BEGIN_SUPPRESS_IPH #include "malloc.h" #include <io.h> #include <conio.h> |