aboutsummaryrefslogtreecommitdiff
path: root/ldo.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 /ldo.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 'ldo.c')
-rw-r--r--ldo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ldo.c b/ldo.c
index 6c4c0ece..2d62c777 100644
--- a/ldo.c
+++ b/ldo.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ldo.c,v 1.76 2000/05/24 13:54:49 roberto Exp roberto $ 2** $Id: ldo.c,v 1.77 2000/05/30 19:00:31 roberto Exp roberto $
3** Stack and Call structure of Lua 3** Stack and Call structure of Lua
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -12,6 +12,8 @@
12 12
13#define LUA_REENTRANT 13#define LUA_REENTRANT
14 14
15#include "lua.h"
16
15#include "lauxlib.h" 17#include "lauxlib.h"
16#include "ldebug.h" 18#include "ldebug.h"
17#include "ldo.h" 19#include "ldo.h"
@@ -23,7 +25,6 @@
23#include "lstring.h" 25#include "lstring.h"
24#include "ltable.h" 26#include "ltable.h"
25#include "ltm.h" 27#include "ltm.h"
26#include "lua.h"
27#include "luadebug.h" 28#include "luadebug.h"
28#include "lundump.h" 29#include "lundump.h"
29#include "lvm.h" 30#include "lvm.h"