From 0b60f64e4343913b4931dc27379d9808e5b78fe1 Mon Sep 17 00:00:00 2001 From: Vinay Sajip Date: Tue, 15 Oct 2019 08:26:12 +0100 Subject: bpo-11410: Standardize and use symbol visibility attributes across POSIX and Windows. (GH-16347) --- Python/pythonrun.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/pythonrun.c') diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 6089086078..702505893f 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -57,7 +57,7 @@ _Py_static_string(PyId_string, ""); extern "C" { #endif -extern grammar _PyParser_Grammar; /* From graminit.c */ +extern Py_EXPORTED_SYMBOL grammar _PyParser_Grammar; /* From graminit.c */ /* Forward */ static void flush_io(void); -- cgit v1.2.1