diff options
author | Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> | 1996-03-11 18:59:41 -0300 |
---|---|---|
committer | Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> | 1996-03-11 18:59:41 -0300 |
commit | 8ad8426c43ff848682cb26269bdf80c21c372483 (patch) | |
tree | f46f9c92fcddd28181f88b85efaa32f56e199452 | |
parent | 3cab7cd025d64838581a1469afc6597a797a1f67 (diff) | |
download | lua-8ad8426c43ff848682cb26269bdf80c21c372483.tar.gz lua-8ad8426c43ff848682cb26269bdf80c21c372483.tar.bz2 lua-8ad8426c43ff848682cb26269bdf80c21c372483.zip |
moved some includes to undump.c
luaI_undump now returns int
-rw-r--r-- | undump.h | 9 |
1 files changed, 3 insertions, 6 deletions
@@ -1,13 +1,10 @@ | |||
1 | /* | 1 | /* |
2 | ** undump.h | 2 | ** undump.h |
3 | ** definitions for lua decompiler | 3 | ** definitions for lua decompiler |
4 | ** $Id$ | 4 | ** $Id: undump.h,v 1.1 1996/03/08 21:43:21 lhf Exp lhf $ |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include "inout.h" | 7 | #include "func.h" |
8 | #include "mem.h" | ||
9 | #include "opcode.h" | ||
10 | #include "table.h" | ||
11 | 8 | ||
12 | #define IsMain(f) (f->lineDefined==0) | 9 | #define IsMain(f) (f->lineDefined==0) |
13 | 10 | ||
@@ -23,4 +20,4 @@ | |||
23 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ | 20 | #define TEST_FLOAT 0.123456789e-23 /* a float for testing representation */ |
24 | 21 | ||
25 | TFunc* luaI_undump1(FILE* D); /* load one chunk */ | 22 | TFunc* luaI_undump1(FILE* D); /* load one chunk */ |
26 | void luaI_undump(FILE* D); /* load all chunks */ | 23 | int luaI_undump(FILE* D); /* load all chunks */ |