From 6bc06eca70f4c41f01bca5f39d54ff5f71a39092 Mon Sep 17 00:00:00 2001 From: Jason Tishler Date: Thu, 4 Sep 2003 11:59:50 +0000 Subject: 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). --- Python/marshal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/marshal.c') 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); -- cgit v1.2.1