aboutsummaryrefslogtreecommitdiff
path: root/scripts/kconfig
diff options
context:
space:
mode:
authorArnaud Lacombe <lacombar@gmail.com>2011-06-01 16:00:46 -0400
committerArnaud Lacombe <lacombar@gmail.com>2011-06-06 15:32:13 -0400
commit10a4b2772e7643247ddb5316c644f1fe7c4dccca (patch)
treed08904666c86600a72b47422e2ded1864e4068f5 /scripts/kconfig
parent75f1468beaeca690e139b4e1bcd19aa20973fca9 (diff)
kconfig: add missing <stdarg.h> inclusion
This header is needed when using va_{start,end,copy}(3) functions family. Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts/kconfig')
-rw-r--r--scripts/kconfig/confdata.c1
-rw-r--r--scripts/kconfig/menu.c1
-rw-r--r--scripts/kconfig/util.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index 4e878dda1ad..ca16ab4367d 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -7,6 +7,7 @@
#include <ctype.h>
#include <errno.h>
#include <fcntl.h>
+#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index 5fdf10dc1d8..d64108bc0cf 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -3,6 +3,7 @@
* Released under the terms of the GNU GPL v2.0.
*/
+#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
diff --git a/scripts/kconfig/util.c b/scripts/kconfig/util.c
index 6330cc871a4..e07d557bb3a 100644
--- a/scripts/kconfig/util.c
+++ b/scripts/kconfig/util.c
@@ -5,6 +5,7 @@
* Released under the terms of the GNU GPL v2.0.
*/
+#include <stdarg.h>
#include <string.h>
#include "lkc.h"