diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-06-12 13:16:38 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-06-12 13:16:38 (GMT) |
commit | af488af55d8f0c078a0c2ac900310194d26e4fc8 (patch) | |
tree | a8619860074bac5415d879395aa61fc459f199c9 /Modules | |
parent | 820c1200597606f95bb996586be88a3283c6448c (diff) | |
download | cpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.zip cpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.tar.gz cpython-af488af55d8f0c078a0c2ac900310194d26e4fc8.tar.bz2 |
fix compiler warning
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/_gestalt.c | 2 |
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); |