diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-21 11:33:04 +0300 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2018-12-28 16:22:38 +0300 |
commit | 558e78e3ce844c61ceffe32775dbefacf167b023 (patch) | |
tree | b0e4f2bbbfabb939be8847dc51197fe62e4c3cc2 /scripts/kconfig/expr.c | |
parent | 0c874100108f03401cb3154801d2671bbad40ad4 (diff) | |
download | linux-558e78e3ce844c61ceffe32775dbefacf167b023.tar.xz |
kconfig: split some C files out of zconf.y
I want to compile each C file independently instead of including all
of them from zconf.y.
Split out confdata.c, expr.c, symbol.c, and preprocess.c .
These are low-hanging fruits.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/expr.c')
-rw-r--r-- | scripts/kconfig/expr.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c index 3ff8c92c86ba..77ffff3a053c 100644 --- a/scripts/kconfig/expr.c +++ b/scripts/kconfig/expr.c @@ -3,6 +3,8 @@ * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> */ +#include <ctype.h> +#include <errno.h> #include <stdio.h> #include <stdlib.h> #include <string.h> |