aboutsummaryrefslogtreecommitdiff
path: root/llex.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2000-06-12 10:52:05 -0300
commit1de5587184eb2d8d9f379c661f77f7e450764894 (patch)
tree9be30539af6392679e56ae3cf336e2d2befc8255 /llex.c
parent8ca9534d048782af13141874e0d2fec0d0f806af (diff)
downloadlua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz
lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.bz2
lua-1de5587184eb2d8d9f379c661f77f7e450764894.zip
`lua.h' is included before any other Lua header file
Diffstat (limited to 'llex.c')
-rw-r--r--llex.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/llex.c b/llex.c
index f4b92b0c..a49358f8 100644
--- a/llex.c
+++ b/llex.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: llex.c,v 1.61 2000/05/25 18:59:59 roberto Exp roberto $ 2** $Id: llex.c,v 1.62 2000/05/26 14:04:04 roberto Exp roberto $
3** Lexical Analyzer 3** Lexical Analyzer
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -11,6 +11,8 @@
11 11
12#define LUA_REENTRANT 12#define LUA_REENTRANT
13 13
14#include "lua.h"
15
14#include "lauxlib.h" 16#include "lauxlib.h"
15#include "llex.h" 17#include "llex.h"
16#include "lmem.h" 18#include "lmem.h"