diff options
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r-- | Include/frameobject.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h index c514de2..5eeb2ad 100644 --- a/Include/frameobject.h +++ b/Include/frameobject.h @@ -1,3 +1,9 @@ +#ifndef Py_FRAMEOBJECT_H +#define Py_FRAMEOBJECT_H +#ifdef __cplusplus +extern "C" { +#endif + /*********************************************************** Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. @@ -88,3 +94,8 @@ block *pop_block PROTO((frameobject *)); /* Extend the value stack */ object **extend_stack PROTO((frameobject *, int, int)); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_FRAMEOBJECT_H */ |