diff options
Diffstat (limited to 'lobject.c')
-rw-r--r-- | lobject.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -1,17 +1,20 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.c,v 2.96 2014/10/27 19:21:56 roberto Exp roberto $ | 2 | ** $Id: lobject.c,v 2.97 2014/10/28 18:41:38 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 | */ |
6 | 6 | ||
7 | #define lobject_c | ||
8 | #define LUA_CORE | ||
9 | |||
10 | #include "lprefix.h" | ||
11 | |||
12 | |||
7 | #include <stdarg.h> | 13 | #include <stdarg.h> |
8 | #include <stdio.h> | 14 | #include <stdio.h> |
9 | #include <stdlib.h> | 15 | #include <stdlib.h> |
10 | #include <string.h> | 16 | #include <string.h> |
11 | 17 | ||
12 | #define lobject_c | ||
13 | #define LUA_CORE | ||
14 | |||
15 | #include "lua.h" | 18 | #include "lua.h" |
16 | 19 | ||
17 | #include "lctype.h" | 20 | #include "lctype.h" |