diff options
| author | Jason Tishler <jason@tishler.net> | 2003-09-04 11:59:50 +0000 |
|---|---|---|
| committer | Jason Tishler <jason@tishler.net> | 2003-09-04 11:59:50 +0000 |
| commit | 6bc06eca70f4c41f01bca5f39d54ff5f71a39092 (patch) | |
| tree | 90e451559ee87d6762cebdf789eba30c0c4fa660 /Modules | |
| parent | 3076559ea5d36d9795edc32e2fae7949b875d7ef (diff) | |
| download | cpython-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 'Modules')
| -rw-r--r-- | Modules/gcmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index bb40b8f9c7..6442fe5452 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -951,7 +951,7 @@ static PyMethodDef GcMethods[] = { {NULL, NULL} /* Sentinel */ }; -void +PyMODINIT_FUNC initgc(void) { PyObject *m; |
