Skip to content

Commit

Permalink
kconfig: add missing <stdarg.h> inclusion
Browse files Browse the repository at this point in the history
This header is needed when using va_{start,end,copy}(3) functions family.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
  • Loading branch information
Arnaud Lacombe committed Jun 6, 2011
1 parent 75f1468 commit 10a4b27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions scripts/kconfig/confdata.c
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
1 change: 1 addition & 0 deletions scripts/kconfig/menu.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* Released under the terms of the GNU GPL v2.0.
*/

#include <stdarg.h>
#include <stdlib.h>
#include <string.h>

Expand Down
1 change: 1 addition & 0 deletions scripts/kconfig/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* Released under the terms of the GNU GPL v2.0.
*/

#include <stdarg.h>
#include <string.h>
#include "lkc.h"

Expand Down

0 comments on commit 10a4b27

Please sign in to comment.