diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-01 16:08:14 -0400 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-06 15:32:16 -0400 |
commit | 02d95c96c3d29df0a1d3bb515692ad4894030729 (patch) | |
tree | 7339964957116ff8dc74559dd9208bff96b7e904 /scripts/kconfig/util.c | |
parent | dd003306a4fae241e1f9cac5bef2c8f2afeb0446 (diff) |
kconfig: add missing <stdlib.h> inclusion
This header is needed when using {m,re}alloc(3) and free(3) function family.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts/kconfig/util.c')
-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 e07d557bb3a9..d0b8b2318e48 100644 --- a/scripts/kconfig/util.c +++ b/scripts/kconfig/util.c | |||
@@ -6,6 +6,7 @@ | |||
6 | */ | 6 | */ |
7 | 7 | ||
8 | #include <stdarg.h> | 8 | #include <stdarg.h> |
9 | #include <stdlib.h> | ||
9 | #include <string.h> | 10 | #include <string.h> |
10 | #include "lkc.h" | 11 | #include "lkc.h" |
11 | 12 | ||