diff options
Diffstat (limited to 'Include/eval.h')
-rw-r--r-- | Include/eval.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/eval.h b/Include/eval.h index a7a0ec8..91e2374 100644 --- a/Include/eval.h +++ b/Include/eval.h @@ -1,3 +1,9 @@ +#ifndef Py_EVAL_H +#define Py_EVAL_H +#ifdef __cplusplus +extern "C" { +#endif + /*********************************************************** Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. @@ -26,3 +32,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. object *eval_code PROTO((codeobject *, object *, object *, object *, object *)); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_EVAL_H */ |