diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2024-08-12 14:48:50 +0200 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2024-09-01 13:34:48 +0200 |
commit | a9d83d74783b00f9189c14180f77bbed133b092c (patch) | |
tree | faed29f1db80ea66727d6d9fd58b4147959359d0 /scripts/kconfig/lexer.l | |
parent | kconfig: remove P_SYMBOL property (diff) | |
download | linux-a9d83d74783b00f9189c14180f77bbed133b092c.tar.xz linux-a9d83d74783b00f9189c14180f77bbed133b092c.zip |
kbuild: split x*alloc() functions in kconfig to scripts/include/xalloc.h
These functions will be useful for other host programs.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/lexer.l')
-rw-r--r-- | scripts/kconfig/lexer.l | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/lexer.l b/scripts/kconfig/lexer.l index 8dd597c4710d..9c2cdfc33c6f 100644 --- a/scripts/kconfig/lexer.l +++ b/scripts/kconfig/lexer.l @@ -13,6 +13,7 @@ #include <stdlib.h> #include <string.h> +#include <xalloc.h> #include "lkc.h" #include "preprocess.h" |