浏览代码

kconfig: add missing <ctype.h> inclusion

This header is needed when using isspace(3) function family.

Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Arnaud Lacombe 14 年之前
父节点
当前提交
dd003306a4
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      scripts/kconfig/menu.c

+ 1 - 0
scripts/kconfig/menu.c

@@ -3,6 +3,7 @@
  * Released under the terms of the GNU GPL v2.0.
  */
 
+#include <ctype.h>
 #include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>