summaryrefslogtreecommitdiff
path: root/Objects/fileobject.c
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 02:06:09 +0000
committerAnthony Baxter <anthonybaxter@gmail.com>2006-04-13 02:06:09 +0000
commitac6bd46d5c30f4e643120aeef1ccd531801a2181 (patch)
treef753bb13f17b1490ca3c26580c16f1d32ea748dc /Objects/fileobject.c
parent28c5f1fa169ddaec9ad4914e2c263e383390ae43 (diff)
downloadcpython-git-ac6bd46d5c30f4e643120aeef1ccd531801a2181.tar.gz
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 'Objects/fileobject.c')
-rw-r--r--Objects/fileobject.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/Objects/fileobject.c b/Objects/fileobject.c
index 20e71a30be..185caa4c65 100644
--- a/Objects/fileobject.c
+++ b/Objects/fileobject.c
@@ -48,6 +48,10 @@
#define NEWLINE_LF 2 /* \n newline seen */
#define NEWLINE_CRLF 4 /* \r\n newline seen */
+#ifdef __cplusplus
+extern "C" {
+#endif
+
FILE *
PyFile_AsFile(PyObject *f)
{
@@ -2441,3 +2445,8 @@ Py_UniversalNewlineFread(char *buf, size_t n,
f->f_skipnextlf = skipnextlf;
return dst - buf;
}
+
+#ifdef __cplusplus
+}
+#endif
+