From 1ad9ec276e903914b0a7f3fea2a84f77598202a1 Mon Sep 17 00:00:00 2001 From: Anthony Baxter Date: Thu, 13 Apr 2006 04:49:25 +0000 Subject: whoops. missed one in an auto-generated file. another extern "C" {} for C++ compiler compatibility --- Modules/config.c.in | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Modules/config.c.in b/Modules/config.c.in index 9ec281c..f811991 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -17,6 +17,10 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES. #include "Python.h" +#ifdef __cplusplus +extern "C" { +#endif + /* -- ADDMODULE MARKER 1 -- */ @@ -50,3 +54,9 @@ struct _inittab _PyImport_Inittab[] = { /* Sentinel */ {0, 0} }; + + +#ifdef __cplusplus +} +#endif + -- cgit v0.12