diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-01 22:00:46 +0200 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-06 21:32:13 +0200 |
commit | 10a4b2772e7643247ddb5316c644f1fe7c4dccca (patch) | |
tree | d08904666c86600a72b47422e2ded1864e4068f5 /scripts/kconfig/util.c | |
parent | kconfig: fix return code for invalid boolean symbol in conf_set_sym_val() (diff) | |
download | linux-10a4b2772e7643247ddb5316c644f1fe7c4dccca.tar.xz linux-10a4b2772e7643247ddb5316c644f1fe7c4dccca.zip |
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 '')
-rw-r--r-- | scripts/kconfig/util.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/util.c b/scripts/kconfig/util.c index 6330cc871a47..e07d557bb3a9 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" |