commit | 02d95c96c3d29df0a1d3bb515692ad4894030729 | [log] [tgz] |
---|---|---|
author | Arnaud Lacombe <lacombar@gmail.com> | Wed Jun 01 16:08:14 2011 -0400 |
committer | Arnaud Lacombe <lacombar@gmail.com> | Mon Jun 06 15:32:16 2011 -0400 |
tree | 7339964957116ff8dc74559dd9208bff96b7e904 | |
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>
diff --git a/scripts/kconfig/util.c b/scripts/kconfig/util.c index e07d557..d0b8b23 100644 --- a/scripts/kconfig/util.c +++ b/scripts/kconfig/util.c
@@ -6,6 +6,7 @@ */ #include <stdarg.h> +#include <stdlib.h> #include <string.h> #include "lkc.h"