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/strdup.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libc/string/strdup.c') diff --git a/lib/libc/string/strdup.c b/lib/libc/string/strdup.c index 97b5d712..198b62cc 100644 --- a/lib/libc/string/strdup.c +++ b/lib/libc/string/strdup.c @@ -1,4 +1,6 @@ -#include // for NULL, malloc +#include "stddef.h" // for NULL + +#include // for malloc #include // for memcpy, strlen, size_t, strdup char *strdup(const char *s) -- cgit v1.2.3