blob: 9e9f6ac4d0bc8c22dad7e4e4c83d2fd175d59b4e [file] [log] [blame]
Guido van Rossumb674c3b1992-01-19 16:32:47 +00001/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00002Copyright (c) 2000, BeOpen.com.
3Copyright (c) 1995-2000, Corporation for National Research Initiatives.
4Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
5All rights reserved.
Guido van Rossumb674c3b1992-01-19 16:32:47 +00006
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00007See the file "Misc/COPYRIGHT" for information on usage and
8redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumb674c3b1992-01-19 16:32:47 +00009******************************************************************/
10
Fred Drake5eb6d4e2000-07-08 23:37:28 +000011#ifndef Py_INTRCHECK_H
12#define Py_INTRCHECK_H
13#ifdef __cplusplus
14extern "C" {
15#endif
16
17extern DL_IMPORT(int) PyOS_InterruptOccurred(void);
18extern DL_IMPORT(void) PyOS_InitInterrupts(void);
19DL_IMPORT(void) PyOS_AfterFork(void);
Guido van Rossuma3309961993-07-28 09:05:47 +000020
21#ifdef __cplusplus
22}
23#endif
24#endif /* !Py_INTRCHECK_H */