Remove the declaration of "internal" table _PyImport_Inittab[]; add

new "official" pointer *PyImport_Inittab.
This commit is contained in:
Guido van Rossum 1997-10-31 18:36:47 +00:00
parent e8d113976c
commit 66959aff68
1 changed files with 1 additions and 3 deletions

View File

@ -57,9 +57,7 @@ struct _inittab {
void (*initfunc)();
};
/* This table is defined in config.c: */
extern struct _inittab _PyImport_Inittab[];
extern DL_IMPORT(struct _inittab *) PyImport_Inittab;
struct _frozen {
char *name;