commit | a77a05dc9cf24a8c88b9d9c70e8984f936d075f3 | [log] [tgz] |
---|---|---|
author | Masahiro Yamada <masahiroy@kernel.org> | Wed Apr 14 00:08:17 2021 +0900 |
committer | Masahiro Yamada <masahiroy@kernel.org> | Wed Apr 14 15:26:09 2021 +0900 |
tree | 1f5bd384aa5e1c7b946fd2d645c0408c713a95e9 | |
parent | 08718745d8610c2ed9870568b8d9c01b7f103efb [diff] [blame] |
kconfig: split menu.c out of parser.y Compile menu.c as an independent compilation unit. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
diff --git a/scripts/kconfig/internal.h b/scripts/kconfig/internal.h new file mode 100644 index 0000000..2f7298c --- /dev/null +++ b/scripts/kconfig/internal.h
@@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +#ifndef INTERNAL_H +#define INTERNAL_H + +struct menu; + +extern struct menu *current_menu, *current_entry; + +#endif /* INTERNAL_H */