summaryrefslogtreecommitdiff
path: root/Modules/cryptmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-04 18:50:17 +0000
committerGuido van Rossum <guido@python.org>1998-12-04 18:50:17 +0000
commit3886bb6997f8f7b0b64eed19045161e697f415fe (patch)
tree6730ba3a04a7579abebbbe8190cb167fcb3f7e62 /Modules/cryptmodule.c
parent50f385c19783631dce79372930d9760ffc618772 (diff)
downloadcpython-git-3886bb6997f8f7b0b64eed19045161e697f415fe.tar.gz
Add DL_EXPORT() to all modules that could possibly be used
on BeOS or Windows.
Diffstat (limited to 'Modules/cryptmodule.c')
-rw-r--r--Modules/cryptmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c
index 1498bb0745..7cc03bed28 100644
--- a/Modules/cryptmodule.c
+++ b/Modules/cryptmodule.c
@@ -27,7 +27,7 @@ static PyMethodDef crypt_methods[] = {
{NULL, NULL} /* sentinel */
};
-void
+DL_EXPORT(void)
initcrypt()
{
Py_InitModule("crypt", crypt_methods);