Staging
v0.5.1
https://github.com/python/cpython
Revision 9d0d616c3b17c5843785ddf7ca61dcc295a82356 authored by Kurt B. Kaiser on 14 February 2008, 02:47:50 UTC, committed by Kurt B. Kaiser on 14 February 2008, 02:47:50 UTC
1 parent 13394e9
Raw File
Tip revision: 9d0d616c3b17c5843785ddf7ca61dcc295a82356 authored by Kurt B. Kaiser on 14 February 2008, 02:47:50 UTC
typo
Tip revision: 9d0d616
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