From 8b17ff5fe0916050a3fe279befb301899bef83b0 Mon Sep 17 00:00:00 2001 From: Abhigyan Ghosh Date: Sun, 15 Jun 2025 18:51:21 +0530 Subject: [PATCH] kconfig: include to fix bcmp build error on Clang Fixes build failure when compiling with Clang in strict C99 environments such as Termux or Android, where 'bcmp' is not declared unless is included. Signed-off-by: Abhigyan Ghosh --- scripts/kconfig/confdata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index ac95661a1..06a6cd77c 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c @@ -2,7 +2,7 @@ /* * Copyright (C) 2002 Roman Zippel */ - +#include #include #include #include -- 2.49.0