| Guido van Rossum | b674c3b | 1992-01-19 16:32:47 +0000 | [diff] [blame] | 1 |  | 
| Fred Drake | 5eb6d4e | 2000-07-08 23:37:28 +0000 | [diff] [blame] | 2 | #ifndef Py_INTRCHECK_H | 
 | 3 | #define Py_INTRCHECK_H | 
 | 4 | #ifdef __cplusplus | 
 | 5 | extern "C" { | 
 | 6 | #endif | 
 | 7 |  | 
| Mark Hammond | 91a681d | 2002-08-12 07:21:58 +0000 | [diff] [blame] | 8 | PyAPI_FUNC(int) PyOS_InterruptOccurred(void); | 
 | 9 | PyAPI_FUNC(void) PyOS_InitInterrupts(void); | 
 | 10 | PyAPI_FUNC(void) PyOS_AfterFork(void); | 
| Guido van Rossum | a330996 | 1993-07-28 09:05:47 +0000 | [diff] [blame] | 11 |  | 
 | 12 | #ifdef __cplusplus | 
 | 13 | } | 
 | 14 | #endif | 
 | 15 | #endif /* !Py_INTRCHECK_H */ |