diff options
author | Thomas Wouters <thomas@python.org> | 2000-07-22 19:25:51 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2000-07-22 19:25:51 (GMT) |
commit | 7889010731eec703eda68fb32b6805c65e3f1cbf (patch) | |
tree | 2ef252eeade1d3aae02fc8b881c9e6a0c5bb1e42 /Tools | |
parent | 23c9e0024af99379ae517b016b874d57127e9a97 (diff) | |
download | cpython-7889010731eec703eda68fb32b6805c65e3f1cbf.zip cpython-7889010731eec703eda68fb32b6805c65e3f1cbf.tar.gz cpython-7889010731eec703eda68fb32b6805c65e3f1cbf.tar.bz2 |
Miscelaneous ANSIfications. I'm assuming here 'main' should take (int,
char**) and return an int even on PC platforms. If not, please fix
PC/utils/makesrc.c ;-P
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/perfecthash/perfhash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/perfecthash/perfhash.c b/Tools/perfecthash/perfhash.c index e7ba0c7..166b183 100644 --- a/Tools/perfecthash/perfhash.c +++ b/Tools/perfecthash/perfhash.c @@ -61,7 +61,7 @@ static struct PyMethodDef hashMethods[] = { #ifdef _MSC_VER _declspec(dllexport) #endif -void initperfhash() +void initperfhash(void) { PyObject *m; |