Staging
v0.5.1
https://github.com/python/cpython
Revision 7a01984aba532b731dd6a06610b0ce523bef4f5e authored by Amaury Forgeot d'Arc on 17 June 2008, 21:42:46 UTC, committed by Amaury Forgeot d'Arc on 17 June 2008, 21:42:46 UTC
1 parent bf9e966
Raw File
Tip revision: 7a01984aba532b731dd6a06610b0ce523bef4f5e authored by Amaury Forgeot d'Arc on 17 June 2008, 21:42:46 UTC
Merge error: platform.py would not import
Tip revision: 7a01984
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