Commit 02d95c96c3d29df0a1d3bb515692ad4894030729

Authored by Arnaud Lacombe
1 parent dd003306a4

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>

Showing 1 changed file with 1 additions and 0 deletions Side-by-side Diff

scripts/kconfig/util.c
... ... @@ -6,6 +6,7 @@
6 6 */
7 7  
8 8 #include <stdarg.h>
  9 +#include <stdlib.h>
9 10 #include <string.h>
10 11 #include "lkc.h"
11 12