From 871ff77c1cd334a141d52b0d003c080a1928731e Mon Sep 17 00:00:00 2001 From: Victor Stinner Date: Fri, 17 May 2019 23:54:00 +0200 Subject: bpo-36763: Add _PyInitError functions (GH-13395) * Add _PyInitError functions: * _PyInitError_Ok() * _PyInitError_Error() * _PyInitError_NoMemory() * _PyInitError_Exit() * _PyInitError_IsError() * _PyInitError_IsExit() * _PyInitError_Failed() * frozenmain.c and _testembed.c now use functions rather than macros. * Move _Py_INIT_xxx() macros to the internal API. * Move _PyWstrList_INIT macro to the internal API. --- Python/bootstrap_hash.c | 1 + 1 file changed, 1 insertion(+) (limited to 'Python/bootstrap_hash.c') diff --git a/Python/bootstrap_hash.c b/Python/bootstrap_hash.c index dd752b8609..fe71cc388a 100644 --- a/Python/bootstrap_hash.c +++ b/Python/bootstrap_hash.c @@ -1,4 +1,5 @@ #include "Python.h" +#include "pycore_coreconfig.h" #ifdef MS_WINDOWS # include /* All sample MSDN wincrypt programs include the header below. It is at least -- cgit v1.2.1