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 /ltable.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 'ltable.c')
-rw-r--r-- | ltable.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ltable.c,v 1.46 2000/06/06 16:31:41 roberto Exp roberto $ | 2 | ** $Id: ltable.c,v 1.47 2000/06/08 17:48:31 roberto Exp roberto $ |
3 | ** Lua tables (hash) | 3 | ** Lua tables (hash) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -20,13 +20,14 @@ | |||
20 | 20 | ||
21 | #define LUA_REENTRANT | 21 | #define LUA_REENTRANT |
22 | 22 | ||
23 | #include "lua.h" | ||
24 | |||
23 | #include "lauxlib.h" | 25 | #include "lauxlib.h" |
24 | #include "lmem.h" | 26 | #include "lmem.h" |
25 | #include "lobject.h" | 27 | #include "lobject.h" |
26 | #include "lstate.h" | 28 | #include "lstate.h" |
27 | #include "lstring.h" | 29 | #include "lstring.h" |
28 | #include "ltable.h" | 30 | #include "ltable.h" |
29 | #include "lua.h" | ||
30 | 31 | ||
31 | 32 | ||
32 | #define gcsize(L, n) numblocks(L, n*2, sizeof(Hash)) | 33 | #define gcsize(L, n) numblocks(L, n*2, sizeof(Hash)) |