blob: 6ccdc3b3ee722f86137523e2bb58cf3befa828a9 [file] [log] [blame]
Guido van Rossumb674c3b1992-01-19 16:32:47 +00001
Fred Drake5eb6d4e2000-07-08 23:37:28 +00002#ifndef Py_INTRCHECK_H
3#define Py_INTRCHECK_H
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
9extern DL_IMPORT(void) PyOS_InitInterrupts(void);
10DL_IMPORT(void) PyOS_AfterFork(void);
Guido van Rossuma3309961993-07-28 09:05:47 +000011
12#ifdef __cplusplus
13}
14#endif
15#endif /* !Py_INTRCHECK_H */