summaryrefslogtreecommitdiff
path: root/scripts/kconfig/preprocess.c
diff options
context:
space:
mode:
authorMasahiro Yamada <masahiroy@kernel.org>2024-07-20 16:27:38 +0900
committerMasahiro Yamada <masahiroy@kernel.org>2024-07-21 23:10:43 +0900
commitfbaf242c956aff6a07d9e97eaa3a0a48d947de33 (patch)
tree9c2870d0112b16bde9cba2c2bc189b5b412dd45d /scripts/kconfig/preprocess.c
parent6e6ef2da3a28f3e02fd204b4f8821030b61f8cd4 (diff)
downloadlwn-fbaf242c956aff6a07d9e97eaa3a0a48d947de33.tar.gz
lwn-fbaf242c956aff6a07d9e97eaa3a0a48d947de33.zip
kbuild: move some helper headers from scripts/kconfig/ to scripts/include/
Move array_size.h, hashtable.h, list.h, list_types.h from scripts/kconfig/ to scripts/include/. These headers will be useful for other host programs. Remove scripts/mod/list.h. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/preprocess.c')
-rw-r--r--scripts/kconfig/preprocess.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/preprocess.c b/scripts/kconfig/preprocess.c
index f0a4a218c4a5..67d1fb95c491 100644
--- a/scripts/kconfig/preprocess.c
+++ b/scripts/kconfig/preprocess.c
@@ -9,9 +9,9 @@
#include <stdlib.h>
#include <string.h>
-#include "array_size.h"
+#include <array_size.h>
+#include <list.h>
#include "internal.h"
-#include "list.h"
#include "lkc.h"
#include "preprocess.h"