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 | |||||
8 | extern DL_IMPORT(int) PyOS_InterruptOccurred(void); | ||||
9 | extern DL_IMPORT(void) PyOS_InitInterrupts(void); | ||||
10 | DL_IMPORT(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 */ |