diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-02 18:58:06 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-02-19 12:20:40 +0300 |
commit | d3d16228a520ce49884d3bb90b67c12726c63020 (patch) | |
tree | cce05ab391fc5dacc51f3106dd92c499ea45e54e /scripts/kconfig/parser.y | |
parent | 56e634b06fd554b819ac9c45fc77a41500861ced (diff) | |
download | linux-d3d16228a520ce49884d3bb90b67c12726c63020.tar.xz |
kconfig: split preprocessor prototypes into preprocess.h
These are needed only for the parse stage. Move the prototypes into
a separate header to make sure they are not used after that.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/parser.y')
-rw-r--r-- | scripts/kconfig/parser.y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/parser.y b/scripts/kconfig/parser.y index cfb82ba09037..ff68def09a2b 100644 --- a/scripts/kconfig/parser.y +++ b/scripts/kconfig/parser.y @@ -13,6 +13,7 @@ #include "lkc.h" #include "internal.h" +#include "preprocess.h" #define printd(mask, fmt...) if (cdebug & (mask)) printf(fmt) |