diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-02-20 13:01:05 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2004-02-20 13:01:05 -0300 |
commit | 898e8a67942186d62aa2cd3dc4ef96fe894788ef (patch) | |
tree | 8e5b90ed05b81f09fc54c85e7c00f6b03ebe5eb2 /lapi.c | |
parent | 1edea3466632a397e5c4e955b3d5cb219f8456cc (diff) | |
download | lua-898e8a67942186d62aa2cd3dc4ef96fe894788ef.tar.gz lua-898e8a67942186d62aa2cd3dc4ef96fe894788ef.tar.bz2 lua-898e8a67942186d62aa2cd3dc4ef96fe894788ef.zip |
added include to stdarg.h (as it uses vararg facilities)
Diffstat (limited to 'lapi.c')
-rw-r--r-- | lapi.c | 3 |
1 files changed, 2 insertions, 1 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 |