summaryrefslogtreecommitdiff
path: root/lex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:14:40 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1996-02-07 12:14:40 -0200
commit56fb06b6f5eaea4f3dba32af1cc476a99b678497 (patch)
tree6c2efb0955985fa49ea175ad995475083ae1ab34 /lex.c
parent995a9f71885fc1979a9a23edc3c34e19b36e7653 (diff)
downloadlua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.tar.gz
lua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.tar.bz2
lua-56fb06b6f5eaea4f3dba32af1cc476a99b678497.zip
"lua_debug" now is exported through debug interface (luadebug.h)
Diffstat (limited to 'lex.c')
-rw-r--r--lex.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lex.c b/lex.c
index bdc81cf7..acb835f8 100644
--- a/lex.c
+++ b/lex.c
@@ -1,4 +1,4 @@
1char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $"; 1char *rcs_lex = "$Id: lex.c,v 2.22 1995/12/21 16:14:04 roberto Exp roberto $";
2 2
3 3
4#include <ctype.h> 4#include <ctype.h>
@@ -10,6 +10,7 @@ char *rcs_lex = "$Id: lex.c,v 2.21 1995/11/16 20:46:24 roberto Exp roberto $";
10#include "table.h" 10#include "table.h"
11#include "opcode.h" 11#include "opcode.h"
12#include "inout.h" 12#include "inout.h"
13#include "luadebug.h"
13#include "parser.h" 14#include "parser.h"
14#include "ugly.h" 15#include "ugly.h"
15 16