summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-02-20 13:01:05 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2004-02-20 13:01:05 -0300
commit898e8a67942186d62aa2cd3dc4ef96fe894788ef (patch)
tree8e5b90ed05b81f09fc54c85e7c00f6b03ebe5eb2
parent1edea3466632a397e5c4e955b3d5cb219f8456cc (diff)
downloadlua-github-898e8a67942186d62aa2cd3dc4ef96fe894788ef.tar.gz
added include to stdarg.h (as it uses vararg facilities)
-rw-r--r--lapi.c3
-rw-r--r--ldebug.c4
-rw-r--r--lobject.h6
3 files changed, 10 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index 928a8afc..59129f71 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,11 +1,12 @@
/*
-** $Id: lapi.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
+** $Id: lapi.c,v 2.2 2004/01/15 12:40:26 roberto Exp roberto $
** Lua API
** See Copyright Notice in lua.h
*/
#include <assert.h>
+#include <stdarg.h>
#include <string.h>
#define lapi_c
diff --git a/ldebug.c b/ldebug.c
index 114214d6..12552451 100644
--- a/ldebug.c
+++ b/ldebug.c
@@ -1,13 +1,15 @@
/*
-** $Id: ldebug.c,v 1.157 2003/10/20 18:42:28 roberto Exp roberto $
+** $Id: ldebug.c,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
** Debug Interface
** See Copyright Notice in lua.h
*/
+#include <stdarg.h>
#include <stddef.h>
#include <string.h>
+
#define ldebug_c
#include "lua.h"
diff --git a/lobject.h b/lobject.h
index 4cdb1701..f9968a09 100644
--- a/lobject.h
+++ b/lobject.h
@@ -1,13 +1,17 @@
/*
-** $Id: lobject.h,v 2.1 2003/12/10 12:13:36 roberto Exp roberto $
+** $Id: lobject.h,v 2.2 2004/02/16 19:09:52 roberto Exp roberto $
** Type definitions for Lua objects
** See Copyright Notice in lua.h
*/
+
#ifndef lobject_h
#define lobject_h
+#include <stdarg.h>
+
+
#include "llimits.h"
#include "lua.h"