summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2008-06-12 13:16:38 (GMT)
committerBenjamin Peterson <benjamin@python.org>2008-06-12 13:16:38 (GMT)
commitaf488af55d8f0c078a0c2ac900310194d26e4fc8 (patch)
treea8619860074bac5415d879395aa61fc459f199c9 /Modules
parent820c1200597606f95bb996586be88a3283c6448c (diff)
downloadcpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.zip
cpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.tar.gz
cpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.tar.bz2
fix compiler warning
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_gestalt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_gestalt.c b/Modules/_gestalt.c
index 7fb1bc9..3a7279f 100644
--- a/Modules/_gestalt.c
+++ b/Modules/_gestalt.c
@@ -77,7 +77,7 @@ static struct PyModuleDef gestaltmodule = {
NULL
};
-void
+PyMODINIT_FUNC
PyInit__gestalt(void)
{
return PyModule_Create(&gestaltmodule);