diff options
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 1.39 2000/05/24 13:54:49 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 1.40 2000/06/08 17:48:31 roberto Exp roberto $ |
3 | ** Some generic functions over Lua objects | 3 | ** Some generic functions over Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -9,9 +9,10 @@ | |||
9 | 9 | ||
10 | #define LUA_REENTRANT | 10 | #define LUA_REENTRANT |
11 | 11 | ||
12 | #include "lobject.h" | ||
13 | #include "lua.h" | 12 | #include "lua.h" |
14 | 13 | ||
14 | #include "lobject.h" | ||
15 | |||
15 | 16 | ||
16 | const char *const luaO_typenames[] = { /* ORDER LUA_T */ | 17 | const char *const luaO_typenames[] = { /* ORDER LUA_T */ |
17 | "userdata", "number", "string", "table", "function", "function", "nil", | 18 | "userdata", "number", "string", "table", "function", "function", "nil", |