ソースを参照

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>
Arnaud Lacombe 14 年 前
コミット
02d95c96c3
1 ファイル変更1 行追加0 行削除
  1. 1 0
      scripts/kconfig/util.c

+ 1 - 0
scripts/kconfig/util.c

@@ -6,6 +6,7 @@
  */
 
 #include <stdarg.h>
+#include <stdlib.h>
 #include <string.h>
 #include "lkc.h"