From e5024517811ee990b770fca0ba7058742d00e032 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 12 Sep 2018 12:06:42 -0700 Subject: closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) --- Python/graminit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/graminit.c') diff --git a/Python/graminit.c b/Python/graminit.c index 8e89ccea3b..5770e8f6a9 100644 --- a/Python/graminit.c +++ b/Python/graminit.c @@ -2,7 +2,7 @@ #include "pgenheaders.h" #include "grammar.h" -PyAPI_DATA(grammar) _PyParser_Grammar; +grammar _PyParser_Grammar; static arc arcs_0_0[3] = { {2, 1}, {3, 1}, -- cgit v1.2.1