aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>1996-03-11 18:59:41 -0300
committerLuiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br>1996-03-11 18:59:41 -0300
commit8ad8426c43ff848682cb26269bdf80c21c372483 (patch)
treef46f9c92fcddd28181f88b85efaa32f56e199452
parent3cab7cd025d64838581a1469afc6597a797a1f67 (diff)
downloadlua-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.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/undump.h b/undump.h
index ce418692..0929a6d5 100644
--- a/undump.h
+++ b/undump.h
@@ -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
25TFunc* luaI_undump1(FILE* D); /* load one chunk */ 22TFunc* luaI_undump1(FILE* D); /* load one chunk */
26void luaI_undump(FILE* D); /* load all chunks */ 23int luaI_undump(FILE* D); /* load all chunks */