diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-12 10:52:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2000-06-12 10:52:05 -0300 |
commit | 1de5587184eb2d8d9f379c661f77f7e450764894 (patch) | |
tree | 9be30539af6392679e56ae3cf336e2d2befc8255 /lapi.c | |
parent | 8ca9534d048782af13141874e0d2fec0d0f806af (diff) | |
download | lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.gz lua-1de5587184eb2d8d9f379c661f77f7e450764894.tar.bz2 lua-1de5587184eb2d8d9f379c661f77f7e450764894.zip |
`lua.h' is included before any other Lua header file
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 1.83 2000/06/06 16:31:41 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 1.84 2000/06/08 17:48:31 roberto Exp roberto $ |
3 | ** Lua API | 3 | ** Lua API |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -9,6 +9,8 @@ | |||
9 | 9 | ||
10 | #define LUA_REENTRANT | 10 | #define LUA_REENTRANT |
11 | 11 | ||
12 | #include "lua.h" | ||
13 | |||
12 | #include "lapi.h" | 14 | #include "lapi.h" |
13 | #include "lauxlib.h" | 15 | #include "lauxlib.h" |
14 | #include "ldo.h" | 16 | #include "ldo.h" |
@@ -21,7 +23,6 @@ | |||
21 | #include "lstring.h" | 23 | #include "lstring.h" |
22 | #include "ltable.h" | 24 | #include "ltable.h" |
23 | #include "ltm.h" | 25 | #include "ltm.h" |
24 | #include "lua.h" | ||
25 | #include "lvm.h" | 26 | #include "lvm.h" |
26 | 27 | ||
27 | 28 | ||