| extern "C" { | |
| PyAPI_FUNC(int) _PySys_Audit( | |
| PyThreadState *tstate, | |
| const char *event, | |
| const char *argFormat, | |
| ...); | |
| /* We want minimal exposure of this function, so use extern rather than | |
| PyAPI_FUNC() to not export the symbol. */ | |
| extern void _PySys_ClearAuditHooks(PyThreadState *tstate); | |
| } | |