From 169daa11155988a210fac949297381743f3cb400 Mon Sep 17 00:00:00 2001 From: Kacper Date: Tue, 9 Dec 2025 23:14:53 +0100 Subject: feat: clang-tidy fixes --- lib/libc/stdlib/bsearch.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'lib/libc/stdlib/bsearch.c') diff --git a/lib/libc/stdlib/bsearch.c b/lib/libc/stdlib/bsearch.c index a2793b0d..b4f83d55 100644 --- a/lib/libc/stdlib/bsearch.c +++ b/lib/libc/stdlib/bsearch.c @@ -47,8 +47,9 @@ is respectively less than, matching, or greater than the array member. */ -#include /* size_t */ -#include +#include "stddef.h" // for NULL + +#include // for size_t /* * Perform a binary search. -- cgit v1.2.3