diff options
-rw-r--r-- | lapi.c | 3 | ||||
-rw-r--r-- | ldebug.c | 4 | ||||
-rw-r--r-- | lobject.h | 6 |
3 files changed, 10 insertions, 3 deletions
@@ -1,11 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lapi.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ | 2 | ** $Id: lapi.c,v 2.2 2004/01/15 12:40:26 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 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <assert.h> | 8 | #include <assert.h> |
9 | #include <stdarg.h> | ||
9 | #include <string.h> | 10 | #include <string.h> |
10 | 11 | ||
11 | #define lapi_c | 12 | #define lapi_c |
@@ -1,13 +1,15 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: ldebug.c,v 1.157 2003/10/20 18:42:28 roberto Exp roberto $ | 2 | ** $Id: ldebug.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ |
3 | ** Debug Interface | 3 | ** Debug Interface |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | 7 | ||
8 | #include <stdarg.h> | ||
8 | #include <stddef.h> | 9 | #include <stddef.h> |
9 | #include <string.h> | 10 | #include <string.h> |
10 | 11 | ||
12 | |||
11 | #define ldebug_c | 13 | #define ldebug_c |
12 | 14 | ||
13 | #include "lua.h" | 15 | #include "lua.h" |
@@ -1,13 +1,17 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lobject.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $ | 2 | ** $Id: lobject.h,v 2.2 2004/02/16 19:09:52 roberto Exp roberto $ |
3 | ** Type definitions for Lua objects | 3 | ** Type definitions for Lua objects |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
6 | 6 | ||
7 | |||
7 | #ifndef lobject_h | 8 | #ifndef lobject_h |
8 | #define lobject_h | 9 | #define lobject_h |
9 | 10 | ||
10 | 11 | ||
12 | #include <stdarg.h> | ||
13 | |||
14 | |||
11 | #include "llimits.h" | 15 | #include "llimits.h" |
12 | #include "lua.h" | 16 | #include "lua.h" |
13 | 17 | ||