summaryrefslogtreecommitdiff
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorJason Tishler <jason@tishler.net>2003-09-04 11:59:50 +0000
committerJason Tishler <jason@tishler.net>2003-09-04 11:59:50 +0000
commit6bc06eca70f4c41f01bca5f39d54ff5f71a39092 (patch)
tree90e451559ee87d6762cebdf789eba30c0c4fa660 /Python/marshal.c
parent3076559ea5d36d9795edc32e2fae7949b875d7ef (diff)
downloadcpython-git-6bc06eca70f4c41f01bca5f39d54ff5f71a39092.tar.gz
Bug #794140: cygwin builds do not embed
The embed2.diff patch solves the user's problem by exporting the missing symbols from the Python core so Python can be embedded in another Cygwin application (well, at lest vim).
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index 5aaa3821b4..0bb7b4f69c 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -875,7 +875,7 @@ static PyMethodDef marshal_methods[] = {
{NULL, NULL} /* sentinel */
};
-void
+PyMODINIT_FUNC
PyMarshal_Init(void)
{
(void) Py_InitModule("marshal", marshal_methods);