summaryrefslogtreecommitdiff
path: root/lstring.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 /lstring.c
parent8ca9534d048782af13141874e0d2fec0d0f806af (diff)
downloadlua-github-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz
`lua.h' is included before any other Lua header file
Diffstat (limited to 'lstring.c')
-rw-r--r--lstring.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lstring.c b/lstring.c
index ebae208a..c265d3d4 100644
--- a/lstring.c
+++ b/lstring.c
@@ -1,5 +1,5 @@
/*
-** $Id: lstring.c,v 1.36 2000/05/10 16:33:20 roberto Exp roberto $
+** $Id: lstring.c,v 1.37 2000/05/24 13:54:49 roberto Exp roberto $
** String table (keeps all strings handled by Lua)
** See Copyright Notice in lua.h
*/
@@ -9,11 +9,12 @@
#define LUA_REENTRANT
+#include "lua.h"
+
#include "lmem.h"
#include "lobject.h"
#include "lstate.h"
#include "lstring.h"
-#include "lua.h"