]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
init_frozen non-static, frozenmain.c not in Makefile any more
authorGuido van Rossum <guido@python.org>
Tue, 7 Feb 1995 15:35:27 +0000 (15:35 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 7 Feb 1995 15:35:27 +0000 (15:35 +0000)
Python/Makefile.in
Python/import.c

index f0f8d21ec222d66892286937ecd3fea4fdf13413..838c2961bd5470a8295a7bc6514038124c560c66 100644 (file)
@@ -48,7 +48,7 @@ SYSLIBS=      -lm
 
 # === Rules ===
 
-all:           $(LIB) frozenmain.o
+all:           $(LIB)
 
 $(LIB):                $& $(OBJS)
                -rm -f $(LIB)
index e222c511aa6b154e15cef8df59164a194d9937cb..35c0d9d44d5a26a4e9080a831a3f3934c2597cba 100644 (file)
@@ -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;
 {