From 160b8c5da38ea2c1ef5c23a45cd4e5f65a2f8ec1 Mon Sep 17 00:00:00 2001 From: John Senneker Date: Wed, 1 Dec 2021 15:15:24 -0500 Subject: [PATCH] Added extern "C" block that was removed in previous commit. --- Lib/python/pyrun.swg | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Lib/python/pyrun.swg b/Lib/python/pyrun.swg index 17992453b..a49cbb5b3 100644 --- a/Lib/python/pyrun.swg +++ b/Lib/python/pyrun.swg @@ -214,6 +214,10 @@ SWIG_Python_CheckNoKeywords(PyObject *kwargs, const char *name) { #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var #endif +#ifdef __cplusplus +extern "C" { +#endif + /* Python-specific SWIG API */ #define SWIG_newvarlink() SWIG_Python_newvarlink() #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr) @@ -430,6 +434,10 @@ SWIG_globals(void) { return Swig_Globals_global; } +#ifdef __cplusplus +} +#endif + /* ----------------------------------------------------------------------------- * Pointer declarations * ----------------------------------------------------------------------------- */