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/import.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/import.c') diff --git a/Python/import.c b/Python/import.c index 858f9e57c4..abe3a1907d 100644 --- a/Python/import.c +++ b/Python/import.c @@ -2841,7 +2841,7 @@ setint(PyObject *d, char *name, int value) return err; } -void +PyMODINIT_FUNC initimp(void) { PyObject *m, *d; -- cgit v1.2.1