diff options
author | Guido van Rossum <guido@python.org> | 1996-05-23 22:57:18 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-05-23 22:57:18 (GMT) |
commit | 2c26cfe776f040c208fbc2f50871431d29747b7a (patch) | |
tree | 3ef9c1dcbe127878664fa96784910eaf88264395 /Modules/config.c.in | |
parent | 3539b1e9194eb63dd893627535d062a7fafc1bf9 (diff) | |
download | cpython-2c26cfe776f040c208fbc2f50871431d29747b7a.zip cpython-2c26cfe776f040c208fbc2f50871431d29747b7a.tar.gz cpython-2c26cfe776f040c208fbc2f50871431d29747b7a.tar.bz2 |
Use struct _inittab def from import.h
Diffstat (limited to 'Modules/config.c.in')
-rw-r--r-- | Modules/config.c.in | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Modules/config.c.in b/Modules/config.c.in index b0db7f3..494a2a2 100644 --- a/Modules/config.c.in +++ b/Modules/config.c.in @@ -37,10 +37,7 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. extern void PyMarshal_Init(); extern void initimp(); -struct { - char *name; - void (*initfunc)(); -} inittab[] = { +struct _inittab inittab[] = { /* -- ADDMODULE MARKER 2 -- */ |