vidya7732/AI_Doctor_LLM_GenModel
0
1#ifndef Py_CPYTHON_SYSMODULE_H2# error "this header file must not be included directly"3#endif4 5#ifdef __cplusplus6extern "C" {7#endif8 9PyAPI_FUNC(PyObject *) _PySys_GetObjectId(_Py_Identifier *key);10PyAPI_FUNC(int) _PySys_SetObjectId(_Py_Identifier *key, PyObject *);11 12PyAPI_FUNC(size_t) _PySys_GetSizeOf(PyObject *);13 14typedef int(*Py_AuditHookFunction)(const char *, PyObject *, void *);15 16PyAPI_FUNC(int) PySys_Audit(17 const char *event,18 const char *argFormat,19 ...);20PyAPI_FUNC(int) PySys_AddAuditHook(Py_AuditHookFunction, void*);21 22#ifdef __cplusplus23}24#endif25 