blob: 8d5dcd3f50fc014964c030147f577a550e7d7ce1 [file] [log] [blame]
Guido van Rossuma3309961993-07-28 09:05:47 +00001#ifndef Py_INTRCHECK_H
2#define Py_INTRCHECK_H
3#ifdef __cplusplus
4extern "C" {
5#endif
6
Guido van Rossumb674c3b1992-01-19 16:32:47 +00007/***********************************************************
Guido van Rossumfd71b9e2000-06-30 23:50:40 +00008Copyright (c) 2000, BeOpen.com.
9Copyright (c) 1995-2000, Corporation for National Research Initiatives.
10Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
11All rights reserved.
Guido van Rossumb674c3b1992-01-19 16:32:47 +000012
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000013See the file "Misc/COPYRIGHT" for information on usage and
14redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumb674c3b1992-01-19 16:32:47 +000015******************************************************************/
16
Guido van Rossum43466ec1998-12-04 18:48:25 +000017extern DL_IMPORT(int) PyOS_InterruptOccurred Py_PROTO((void));
18extern DL_IMPORT(void) PyOS_InitInterrupts Py_PROTO((void));
19DL_IMPORT(void) PyOS_AfterFork Py_PROTO((void));
Guido van Rossuma3309961993-07-28 09:05:47 +000020
21#ifdef __cplusplus
22}
23#endif
24#endif /* !Py_INTRCHECK_H */