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
commit07efb09aa83f53faee08a65e9b79f62796d2961e (patch)
treeeab3da5b458ef1cbec57f92b7cf0956e93d39a78 /Objects/fileobject.c
parent85496c66d4d16d942017fe9b855390d69eb3dd2d (diff)
downloadcpython-07efb09aa83f53faee08a65e9b79f62796d2961e.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
+