lua

A copy of the Lua development repository
Log | Files | Refs | README

commit 8ad8426c43ff848682cb26269bdf80c21c372483
parent 3cab7cd025d64838581a1469afc6597a797a1f67
Author: Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>
Date:   Mon, 11 Mar 1996 18:59:21 -0300

moved some includes to undump.c
luaI_undump now returns int

Diffstat:
Mundump.h | 9+++------
1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/undump.h b/undump.h @@ -1,13 +1,10 @@ /* ** undump.h ** definitions for lua decompiler -** $Id$ +** $Id: undump.h,v 1.1 1996/03/08 21:43:21 lhf Exp lhf $ */ -#include "inout.h" -#include "mem.h" -#include "opcode.h" -#include "table.h" +#include "func.h" #define IsMain(f) (f->lineDefined==0) @@ -23,4 +20,4 @@ #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ TFunc* luaI_undump1(FILE* D); /* load one chunk */ -void luaI_undump(FILE* D); /* load all chunks */ +int luaI_undump(FILE* D); /* load all chunks */