vidya7732/AI_Doctor_LLM_GenModel
0
1#ifndef Py_INTERNAL_SYSMODULE_H2#define Py_INTERNAL_SYSMODULE_H3#ifdef __cplusplus4extern "C" {5#endif6 7#ifndef Py_BUILD_CORE8# error "this header requires Py_BUILD_CORE define"9#endif10 11PyAPI_FUNC(int) _PySys_Audit(12 PyThreadState *tstate,13 const char *event,14 const char *argFormat,15 ...);16 17/* We want minimal exposure of this function, so use extern rather than18 PyAPI_FUNC() to not export the symbol. */19extern void _PySys_ClearAuditHooks(PyThreadState *tstate);20 21#ifdef __cplusplus22}23#endif24#endif /* !Py_INTERNAL_SYSMODULE_H */25 