diff options
author | Guido van Rossum <guido@python.org> | 1996-08-21 19:04:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-21 19:04:10 (GMT) |
commit | 360a934609dac24604ca4ca70e11c53892819452 (patch) | |
tree | 442bd1d6fa075b06b3aa39782fa88d635edb172c /Modules/parsermodule.c | |
parent | ae92f01029341f45f82132534eba172a8c4e3e86 (diff) | |
download | cpython-360a934609dac24604ca4ca70e11c53892819452.zip cpython-360a934609dac24604ca4ca70e11c53892819452.tar.gz cpython-360a934609dac24604ca4ca70e11c53892819452.tar.bz2 |
Support for old CPP
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 94e22ec..5d6c2ea 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -820,7 +820,11 @@ build_node_tree(tuple) } /* build_node_tree() */ +#ifdef HAVE_OLD_CPP +#define VALIDATER(n) static int validate_/**/n() +#else #define VALIDATER(n) static int validate_##n() +#endif /* |