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 /lgc.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 'lgc.c')
-rw-r--r-- | lgc.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,11 +1,13 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 1.55 2000/06/05 20:07:53 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 1.56 2000/06/08 17:48:31 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #define LUA_REENTRANT | 7 | #define LUA_REENTRANT |
8 | 8 | ||
9 | #include "lua.h" | ||
10 | |||
9 | #include "ldo.h" | 11 | #include "ldo.h" |
10 | #include "lfunc.h" | 12 | #include "lfunc.h" |
11 | #include "lgc.h" | 13 | #include "lgc.h" |
@@ -16,7 +18,6 @@ | |||
16 | #include "lstring.h" | 18 | #include "lstring.h" |
17 | #include "ltable.h" | 19 | #include "ltable.h" |
18 | #include "ltm.h" | 20 | #include "ltm.h" |
19 | #include "lua.h" | ||
20 | 21 | ||
21 | 22 | ||
22 | 23 | ||