diff options
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 0e5ae9f..2444ee1 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -1,3 +1,9 @@ +#ifndef Py_ERRORS_H +#define Py_ERRORS_H +#ifdef __cplusplus +extern "C" { +#endif + /*********************************************************** Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. @@ -63,3 +69,8 @@ extern void err_input PROTO((int)); extern void err_badcall PROTO((void)); extern object *err_getexc PROTO((void)); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_ERRORS_H */ |