diff options
author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-01 16:06:22 -0400 |
---|---|---|
committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-06 15:32:15 -0400 |
commit | dd003306a4fae241e1f9cac5bef2c8f2afeb0446 (patch) | |
tree | d78314cc84023a790784543db677f33c9683f527 /scripts | |
parent | 10a4b2772e7643247ddb5316c644f1fe7c4dccca (diff) | |
download | op-kernel-dev-dd003306a4fae241e1f9cac5bef2c8f2afeb0446.zip op-kernel-dev-dd003306a4fae241e1f9cac5bef2c8f2afeb0446.tar.gz |
kconfig: add missing <ctype.h> inclusion
This header is needed when using isspace(3) function family.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/menu.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c index d64108b..24547fe 100644 --- a/scripts/kconfig/menu.c +++ b/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> |