From 0b3449010e15a08977e669cfdb8146bb789a5809 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Tue, 7 Feb 1995 15:35:27 +0000 Subject: init_frozen non-static, frozenmain.c not in Makefile any more --- Python/import.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Python/import.c') diff --git a/Python/import.c b/Python/import.c index e222c511aa..35c0d9d44d 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; { -- cgit v1.2.1