From 732ef82c72993cad6b5701a50be1c0753e5cc973 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 17 Jun 1997 15:19:17 -0300 Subject: "luaI_undump1" cannot be static; luac uses it. --- undump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'undump.c') diff --git a/undump.c b/undump.c index 6fb16117..7088dc8d 100644 --- a/undump.c +++ b/undump.c @@ -3,7 +3,7 @@ ** load bytecodes from files */ -char* rcs_undump="$Id: undump.c,v 1.24 1997/06/13 11:08:47 lhf Exp $"; +char* rcs_undump="$Id: undump.c,v 1.23 1997/06/16 16:50:22 roberto Exp roberto $"; #include #include @@ -301,7 +301,7 @@ static void LoadChunk(ZIO* Z) ** load one chunk from a file. ** return list of functions found, headed by main, or NULL at EOF. */ -static TFunc* luaI_undump1(ZIO* Z) +TFunc* luaI_undump1(ZIO* Z) { int c=zgetc(Z); if (c==ID_CHUNK) -- cgit v1.2.3-55-g6feb