mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
init_frozen non-static, frozenmain.c not in Makefile any more
This commit is contained in:
parent
262e124107
commit
0b3449010e
2 changed files with 4 additions and 2 deletions
|
@ -48,7 +48,7 @@ SYSLIBS= -lm
|
||||||
|
|
||||||
# === Rules ===
|
# === Rules ===
|
||||||
|
|
||||||
all: $(LIB) frozenmain.o
|
all: $(LIB)
|
||||||
|
|
||||||
$(LIB): $& $(OBJS)
|
$(LIB): $& $(OBJS)
|
||||||
-rm -f $(LIB)
|
-rm -f $(LIB)
|
||||||
|
|
|
@ -530,7 +530,9 @@ extern struct frozen {
|
||||||
int size;
|
int size;
|
||||||
} frozen_modules[];
|
} frozen_modules[];
|
||||||
|
|
||||||
static int
|
/* This function is also used from frozenmain.c */
|
||||||
|
|
||||||
|
int
|
||||||
init_frozen(name)
|
init_frozen(name)
|
||||||
char *name;
|
char *name;
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue