diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2020-10-29 18:51:51 +0300 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-12-08 17:31:29 +0300 |
commit | 98ebea7ba891569c3678c5cd2fd1960098e84f4e (patch) | |
tree | 20976a34271c012ecd0c12728db5dcf970bfc7c1 | |
parent | a2574c12df0d77eef293d2f388d7e05df33b6155 (diff) | |
download | linux-98ebea7ba891569c3678c5cd2fd1960098e84f4e.tar.xz |
kconfig: make lkc.h self-sufficient #include-wise
Signed-off-by: Boris Kolpackov <boris@codesynthesis.com>
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
-rw-r--r-- | scripts/kconfig/lkc.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/kconfig/lkc.h b/scripts/kconfig/lkc.h index 8454649b17bd..bee2413bda63 100644 --- a/scripts/kconfig/lkc.h +++ b/scripts/kconfig/lkc.h @@ -6,6 +6,10 @@ #ifndef LKC_H #define LKC_H +#include <assert.h> +#include <stdio.h> +#include <stdlib.h> + #include "expr.h" #ifdef __cplusplus |