Staging
v0.5.1
https://github.com/python/cpython
Revision 317e9f5ef11a5fef1c9d6cd1abf0f4ef32431cbc authored by Barry Warsaw on 07 September 2001, 18:23:30 UTC, committed by Barry Warsaw on 07 September 2001, 18:23:30 UTC
1 parent b5b7865
Raw File
Tip revision: 317e9f5ef11a5fef1c9d6cd1abf0f4ef32431cbc authored by Barry Warsaw on 07 September 2001, 18:23:30 UTC
Bumping version numbers.
Tip revision: 317e9f5
intrcheck.h

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

extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
extern DL_IMPORT(void) PyOS_InitInterrupts(void);
DL_IMPORT(void) PyOS_AfterFork(void);

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