diff options
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/Python/import.c b/Python/import.c index 44f6d7b..da9422b 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1,6 +1,6 @@ /*********************************************************** -Copyright 1991, 1992 by Stichting Mathematisch Centrum, Amsterdam, The -Netherlands. +Copyright 1991, 1992, 1993 by Stichting Mathematisch Centrum, +Amsterdam, The Netherlands. All Rights Reserved @@ -395,11 +395,6 @@ doneimport() /* Initialize built-in modules when first imported */ -extern struct { - char *name; - void (*initfunc)(); -} inittab[]; - static int init_builtin(name) char *name; |