diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 1996-07-10 15:47:19 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-07-10 15:47:19 (GMT) |
commit | 84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0 (patch) | |
tree | 221796268031efdd2641bb0f0024e311e6447158 /Mac/Modules | |
parent | 5220d020b933a8d3d9b0ff90cb1bbffd0a59666a (diff) | |
download | cpython-84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0.zip cpython-84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0.tar.gz cpython-84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0.tar.bz2 |
inittab is a "struct _inittab".
Diffstat (limited to 'Mac/Modules')
-rw-r--r-- | Mac/Modules/config.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Mac/Modules/config.c b/Mac/Modules/config.c index 24eb452..16b55ce 100644 --- a/Mac/Modules/config.c +++ b/Mac/Modules/config.c @@ -136,10 +136,7 @@ extern void initwaste(); extern void PyMarshal_Init(); extern void initimp(); -struct { - char *name; - void (*initfunc)(); -} inittab[] = { +struct _inittab inittab[] = { {"array", initarray}, #ifndef SYMANTEC__CFM68K__ |