diff options
| author | Jack Jansen <jack.jansen@cwi.nl> | 1996-07-10 15:47:19 +0000 |
|---|---|---|
| committer | Jack Jansen <jack.jansen@cwi.nl> | 1996-07-10 15:47:19 +0000 |
| commit | 84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0 (patch) | |
| tree | 221796268031efdd2641bb0f0024e311e6447158 | |
| parent | 5220d020b933a8d3d9b0ff90cb1bbffd0a59666a (diff) | |
| download | cpython-git-84d0bfcbe06a5d8e8a019e786e1302e71c8e2ca0.tar.gz | |
inittab is a "struct _inittab".
| -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 24eb4525ff..16b55ce87f 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__ |
