summaryrefslogtreecommitdiffstats
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 02:06:09 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 02:06:09 (GMT)
commitac6bd46d5c30f4e643120aeef1ccd531801a2181 (patch)
treef753bb13f17b1490ca3c26580c16f1d32ea748dc /Python/pythonrun.c
parent28c5f1fa169ddaec9ad4914e2c263e383390ae43 (diff)
downloadcpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.zip
cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.gz
cpython-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.bz2
spread the extern "C" { } magic pixie dust around. Python itself builds now
using a C++ compiler. Still lots and lots of errors in the modules built by setup.py, and a bunch of warnings from g++ in the core.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 818c760..b98d6fb 100644
--- a/Python/pythonrun.c
+++ b/Python/pythonrun.c
@@ -37,6 +37,10 @@
_Py_GetRefTotal())
#endif
+#ifdef __cplusplus
+extern "C" {
+#endif
+
extern char *Py_GetPath(void);
extern grammar _PyParser_Grammar; /* From graminit.c */
@@ -1692,3 +1696,8 @@ PyParser_SimpleParseString(const char *str, int start)
{
return PyParser_SimpleParseStringFlags(str, start, 0);
}
+
+#ifdef __cplusplus
+}
+#endif
+