summaryrefslogtreecommitdiff
path: root/Modules/makesetup
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2000-07-23 00:02:15 +0000
committerThomas Wouters <thomas@python.org>2000-07-23 00:02:15 +0000
commit459493cceb1a7ad38b3a1252acac869e222e8053 (patch)
treeaab52788e891cc58b685319cbdb2a240c3b75099 /Modules/makesetup
parent6863bc70f05af593fbbdb33cde7238f78a70e9c8 (diff)
downloadcpython-459493cceb1a7ad38b3a1252acac869e222e8053.tar.gz
Fix prototypes generated by makesetup, so they include '(void)' rather than
empty argumentlists.
Diffstat (limited to 'Modules/makesetup')
-rwxr-xr-xModules/makesetup4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/makesetup b/Modules/makesetup
index 3da53234bf..c0c2712eb6 100755
--- a/Modules/makesetup
+++ b/Modules/makesetup
@@ -23,7 +23,7 @@
# Copying config.c.in to config.c:
# - insert an identifying comment at the start
# - for each <module> mentioned in Setup before *noconfig*:
-# + insert 'extern void init<module>();' before MARKER 1
+# + insert 'extern void init<module>(void);' before MARKER 1
# + insert '{"<module>", initmodule},' before MARKER 2
#
# Copying Makefile.pre to Makefile:
@@ -234,7 +234,7 @@ sed -e 's/[ ]*#.*//' -e '/^[ ]*$/d' |
INITBITS=
for mod in $MODS
do
- EXTDECLS="${EXTDECLS}extern void init$mod();$NL"
+ EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
INITBITS="${INITBITS} {\"$mod\", init$mod},$NL"
done