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

View file

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