diff options
author | Guido van Rossum <guido@python.org> | 1995-02-07 15:35:27 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-02-07 15:35:27 (GMT) |
commit | 0b3449010e15a08977e669cfdb8146bb789a5809 (patch) | |
tree | a7159aef30e828879bf64d1b1a246bbc3d5727a8 /Python | |
parent | 262e124107806a16ba45e2b68a76d89ebb7d2dc8 (diff) | |
download | cpython-0b3449010e15a08977e669cfdb8146bb789a5809.zip cpython-0b3449010e15a08977e669cfdb8146bb789a5809.tar.gz cpython-0b3449010e15a08977e669cfdb8146bb789a5809.tar.bz2 |
init_frozen non-static, frozenmain.c not in Makefile any more
Diffstat (limited to 'Python')
-rw-r--r-- | Python/Makefile.in | 2 | ||||
-rw-r--r-- | Python/import.c | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/Python/Makefile.in b/Python/Makefile.in index f0f8d21..838c296 100644 --- a/Python/Makefile.in +++ b/Python/Makefile.in @@ -48,7 +48,7 @@ SYSLIBS= -lm # === Rules === -all: $(LIB) frozenmain.o +all: $(LIB) $(LIB): $& $(OBJS) -rm -f $(LIB) diff --git a/Python/import.c b/Python/import.c index e222c51..35c0d9d 100644 --- a/Python/import.c +++ b/Python/import.c @@ -530,7 +530,9 @@ extern struct frozen { int size; } frozen_modules[]; -static int +/* This function is also used from frozenmain.c */ + +int init_frozen(name) char *name; { |