Staging
v0.8.1
https://github.com/python/cpython
Revision 77a7a5a634c106a41eedf34fb69a3d77ba890577 authored by Fred Drake on 05 December 2003, 18:02:23 UTC, committed by Fred Drake on 05 December 2003, 18:02:23 UTC
1 parent cdda514
Raw File
Tip revision: 77a7a5a634c106a41eedf34fb69a3d77ba890577 authored by Fred Drake on 05 December 2003, 18:02:23 UTC
One more backported patch related to the removal of version numbers from
Tip revision: 77a7a5a
intrcheck.h

#ifndef Py_INTRCHECK_H
#define Py_INTRCHECK_H
#ifdef __cplusplus
extern "C" {
#endif

PyAPI_FUNC(int) PyOS_InterruptOccurred(void);
PyAPI_FUNC(void) PyOS_InitInterrupts(void);
PyAPI_FUNC(void) PyOS_AfterFork(void);

#ifdef __cplusplus
}
#endif
#endif /* !Py_INTRCHECK_H */
back to top