summaryrefslogtreecommitdiffstats
path: root/Modules/config.c.in
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-23 00:02:15 (GMT)
committerThomas Wouters <thomas@python.org>2000-07-23 00:02:15 (GMT)
commit53e7fd77a704df337bad3e9fae2c7f70430e1be2 (patch)
tree0bf76e6a5704b69d634ac8c080bee0eb8968aba2 /Modules/config.c.in
parenta534594fc72cddd5c29ed8debbb3d2f16792db97 (diff)
downloadcpython-53e7fd77a704df337bad3e9fae2c7f70430e1be2.zip
cpython-53e7fd77a704df337bad3e9fae2c7f70430e1be2.tar.gz
cpython-53e7fd77a704df337bad3e9fae2c7f70430e1be2.tar.bz2
Fix prototypes generated by makesetup, so they include '(void)' rather than
empty argumentlists.
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r--Modules/config.c.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in
index 106b084..da7cabb 100644
--- a/Modules/config.c.in
+++ b/Modules/config.c.in
@@ -20,8 +20,8 @@ redistribution of this file, and for a DISCLAIMER OF ALL WARRANTIES.
/* -- ADDMODULE MARKER 1 -- */
-extern void PyMarshal_Init();
-extern void initimp();
+extern void PyMarshal_Init(void);
+extern void initimp(void);
struct _inittab _PyImport_Inittab[] = {