diff options
author | Guido van Rossum <guido@python.org> | 2001-01-10 21:03:32 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-01-10 21:03:32 +0000 |
commit | 5a53019b0d4780b270c0c8027e0e66b7183fb661 (patch) | |
tree | 301ea469ac53ab9d55871b315ae993b0fd25a7dd /Modules/shamodule.c | |
parent | 4c3f57cf05c9d7ea5b1ff681703b95ce034f16c3 (diff) | |
download | cpython-git-5a53019b0d4780b270c0c8027e0e66b7183fb661.tar.gz |
Part of SF patch #102409 by jlt63 to support building these modules
under CYGWIN as shared libraries (DLLs).
Diffstat (limited to 'Modules/shamodule.c')
-rw-r--r-- | Modules/shamodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/shamodule.c b/Modules/shamodule.c index 8f9523050e..32ac02dbab 100644 --- a/Modules/shamodule.c +++ b/Modules/shamodule.c @@ -529,7 +529,7 @@ static struct PyMethodDef SHA_functions[] = { if (o!=NULL) PyDict_SetItemString(d,n,o); \ Py_XDECREF(o); } -void +DL_EXPORT(void) initsha(void) { PyObject *d, *m; |