summaryrefslogtreecommitdiff
path: root/Modules/flmodule.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
commit23c78aa2bcdf120ffe13190812f5769f2f6f6cf3 (patch)
tree2d6943056aa60d753144386c9b4de1de43fc6cfb /Modules/flmodule.c
parent183e55276ae7198b64daae3f01928212cee45ab0 (diff)
downloadcpython-23c78aa2bcdf120ffe13190812f5769f2f6f6cf3.tar.gz
Add DL_EXPORT() to all modules that could possibly be used
on BeOS or Windows.
Diffstat (limited to 'Modules/flmodule.c')
-rw-r--r--Modules/flmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/flmodule.c b/Modules/flmodule.c
index 2e2dd5efd4..c921d4bca3 100644
--- a/Modules/flmodule.c
+++ b/Modules/flmodule.c
@@ -2520,7 +2520,7 @@ static PyMethodDef forms_methods[] = {
{NULL, NULL} /* sentinel */
};
-void
+DL_EXPORT(void)
initfl()
{
Py_InitModule("fl", forms_methods);