summaryrefslogtreecommitdiff
path: root/Modules/shamodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-01-10 21:03:32 +0000
committerGuido van Rossum <guido@python.org>2001-01-10 21:03:32 +0000
commit5a53019b0d4780b270c0c8027e0e66b7183fb661 (patch)
tree301ea469ac53ab9d55871b315ae993b0fd25a7dd /Modules/shamodule.c
parent4c3f57cf05c9d7ea5b1ff681703b95ce034f16c3 (diff)
downloadcpython-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.c2
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;