blob: fb2d3962563656e8f331996b28b7499276587b26 [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 Rossum5799b521995-01-04 19:06:22 +00008Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
9The Netherlands.
Guido van Rossumb674c3b1992-01-19 16:32:47 +000010
11 All Rights Reserved
12
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000013Copyright (c) 2000, BeOpen.com.
14Copyright (c) 1995-2000, Corporation for National Research Initiatives.
15Copyright (c) 1990-1995, Stichting Mathematisch Centrum.
16All rights reserved.
Guido van Rossumb674c3b1992-01-19 16:32:47 +000017
Guido van Rossumfd71b9e2000-06-30 23:50:40 +000018See the file "Misc/COPYRIGHT" for information on usage and
19redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
Guido van Rossumb674c3b1992-01-19 16:32:47 +000020
21******************************************************************/
22
Guido van Rossum43466ec1998-12-04 18:48:25 +000023extern DL_IMPORT(int) PyOS_InterruptOccurred Py_PROTO((void));
24extern DL_IMPORT(void) PyOS_InitInterrupts Py_PROTO((void));
25DL_IMPORT(void) PyOS_AfterFork Py_PROTO((void));
Guido van Rossuma3309961993-07-28 09:05:47 +000026
27#ifdef __cplusplus
28}
29#endif
30#endif /* !Py_INTRCHECK_H */