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/string/strspn.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libc/string/strspn.c') diff --git a/lib/libc/string/strspn.c b/lib/libc/string/strspn.c index 3b7036cc..afbfabe8 100644 --- a/lib/libc/string/strspn.c +++ b/lib/libc/string/strspn.c @@ -1,4 +1,6 @@ -#include // for size_t, strchr, strspn, NULL +#include "stddef.h" // for NULL + +#include // for size_t, strchr, strspn size_t strspn(const char *s1, const char *s2) { -- cgit v1.2.3