From 360a934609dac24604ca4ca70e11c53892819452 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 21 Aug 1996 19:04:10 +0000 Subject: [PATCH] Support for old CPP --- Modules/parsermodule.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 94e22ec544a..5d6c2ea9fa9 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 /*