diff options
| author | Benjamin Peterson <benjamin@python.org> | 2008-06-12 13:16:38 +0000 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2008-06-12 13:16:38 +0000 |
| commit | af488af55d8f0c078a0c2ac900310194d26e4fc8 (patch) | |
| tree | a8619860074bac5415d879395aa61fc459f199c9 | |
| parent | 820c1200597606f95bb996586be88a3283c6448c (diff) | |
| download | cpython-git-af488af55d8f0c078a0c2ac900310194d26e4fc8.tar.gz | |
fix compiler warning
| -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 7fb1bc97ce..3a7279f824 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); |
