#ifndef Py_INTERNAL_RUNTIME_INIT_H
#define Py_INTERNAL_RUNTIME_INIT_H
#ifdef __cplusplus
extern "C" {
#endif
#ifndef Py_BUILD_CORE
# error "this header requires Py_BUILD_CORE define"
#endif
#include "pycore_ceval_state.h"
#include "pycore_debug_offsets.h"
#include "pycore_faulthandler.h"
#include "pycore_floatobject.h"
#include "pycore_function.h"
#include "pycore_object.h"
#include "pycore_obmalloc_init.h"
#include "pycore_parser.h"
#include "pycore_pyhash.h"
#include "pycore_pymem_init.h"
#include "pycore_pythread.h"
#include "pycore_qsbr.h"
#include "pycore_runtime_init_generated.h"
#include "pycore_signal.h"
#include "pycore_tracemalloc.h"
extern PyTypeObject _PyExc_MemoryError;
#define _PyRuntimeState_INIT(runtime, debug_cookie) …
#define _PyInterpreterState_INIT(INTERP) …
#define _PyThreadStateImpl_INIT …
#define _PyThreadState_INIT …
#define _PyBytes_SIMPLE_INIT(CH, LEN) …
#define _PyBytes_CHAR_INIT(CH) …
#define _PyUnicode_ASCII_BASE_INIT(LITERAL, ASCII) …
#define _PyASCIIObject_INIT(LITERAL) …
#define INIT_STR(NAME, LITERAL) …
#define INIT_ID(NAME) …
#define _PyUnicode_LATIN1_INIT(LITERAL, UTF8) …
#include "pycore_runtime_init_generated.h"
#ifdef __cplusplus
}
#endif
#endif