diff options
Diffstat (limited to 'Include/token.h')
-rw-r--r-- | Include/token.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Include/token.h b/Include/token.h index 053ceab..6939cc8 100644 --- a/Include/token.h +++ b/Include/token.h @@ -1,3 +1,9 @@ +#ifndef Py_TOKEN_H +#define Py_TOKEN_H +#ifdef __cplusplus +extern "C" { +#endif + /*********************************************************** Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, Amsterdam, The Netherlands. @@ -77,3 +83,8 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. extern char *tok_name[]; /* Token names */ extern int tok_1char PROTO((int)); extern int tok_2char PROTO((int, int)); + +#ifdef __cplusplus +} +#endif +#endif /* !Py_TOKEN_H */ |