blob: ba50c0bc1bd10408d42507c8322ff657e67cbd1a [file] [log] [blame]
Guido van Rossum12669741996-05-22 16:38:17 +00001/***********************************************************
2Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
3The Netherlands.
4
5 All Rights Reserved
6
7Permission to use, copy, modify, and distribute this software and its
8documentation for any purpose and without fee is hereby granted,
9provided that the above copyright notice appear in all copies and that
10both that copyright notice and this permission notice appear in
11supporting documentation, and that the names of Stichting Mathematisch
12Centrum or CWI not be used in advertising or publicity pertaining to
13distribution of the software without specific, written prior permission.
14
15STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22
23******************************************************************/
24
25#ifndef Py_PYDEBUG_H
26#define Py_PYDEBUG_H
27#ifdef __cplusplus
28extern "C" {
29#endif
30
31extern DL_IMPORT(int) Py_DebugFlag;
32extern DL_IMPORT(int) Py_VerboseFlag;
33extern DL_IMPORT(int) Py_SuppressPrintingFlag;
34
35void Py_FatalError Py_PROTO((char *));
36
37#ifdef __cplusplus
38}
39#endif
40#endif /* !Py_PYDEBUG_H */