From: Fred Drake Date: Sun, 9 Jul 2000 14:36:13 +0000 (+0000) Subject: Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors. X-Git-Tag: v2.0b1~965 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3cd2ee4037156e5aab352a75b1e879f47808b468;p=thirdparty%2FPython%2Fcpython.git Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors. --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 8baa693f9ccf..daa2f80126ac 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -858,11 +858,7 @@ build_node_tree(PyObject *tuple) } -#ifdef HAVE_OLD_CPP -#define VALIDATER(n) static int validate_/**/n(node *tree) -#else #define VALIDATER(n) static int validate_##n(node *tree) -#endif /*