aboutsummaryrefslogtreecommitdiff
path: root/ltm.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 /ltm.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 'ltm.c')
-rw-r--r--ltm.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/ltm.c b/ltm.c
index 1fdff400..c2bd04fc 100644
--- a/ltm.c
+++ b/ltm.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltm.c,v 1.41 2000/05/30 18:54:49 roberto Exp roberto $ 2** $Id: ltm.c,v 1.42 2000/06/08 17:48:31 roberto Exp roberto $
3** Tag methods 3** Tag methods
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -10,6 +10,8 @@
10 10
11#define LUA_REENTRANT 11#define LUA_REENTRANT
12 12
13#include "lua.h"
14
13#include "lauxlib.h" 15#include "lauxlib.h"
14#include "lmem.h" 16#include "lmem.h"
15#include "lobject.h" 17#include "lobject.h"