aboutsummaryrefslogtreecommitdiff
path: root/inout.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-30 19:00:50 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1997-07-30 19:00:50 -0300
commit0892f0e5b75c51f1fee07276a3ba13301b83409e (patch)
tree9f3b9ec92f26c05a85c826ffc5f803fda2f48867 /inout.h
parent1d7857bc635c0bfe7c5b1f325d31feb7660e9a5a (diff)
downloadlua-0892f0e5b75c51f1fee07276a3ba13301b83409e.tar.gz
lua-0892f0e5b75c51f1fee07276a3ba13301b83409e.tar.bz2
lua-0892f0e5b75c51f1fee07276a3ba13301b83409e.zip
BIG CHANGE: functions have their own "constant table".
Diffstat (limited to 'inout.h')
-rw-r--r--inout.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/inout.h b/inout.h
index 77e85978..c3dccdf1 100644
--- a/inout.h
+++ b/inout.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: inout.h,v 1.19 1997/06/18 20:35:49 roberto Exp roberto $ 2** $Id: inout.h,v 1.20 1997/06/19 18:04:34 roberto Exp roberto $
3*/ 3*/
4 4
5 5
@@ -7,12 +7,13 @@
7#define inout_h 7#define inout_h
8 8
9#include "types.h" 9#include "types.h"
10#include "tree.h"
10#include <stdio.h> 11#include <stdio.h>
11 12
12 13
13extern Word lua_linenumber; 14extern Word lua_linenumber;
14extern Word lua_debugline; 15extern Word lua_debugline;
15extern char *lua_parsedfile; 16extern TaggedString *lua_parsedfile;
16 17
17void luaI_setparsedfile (char *name); 18void luaI_setparsedfile (char *name);
18 19