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/strtok_r.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lib/libc/string/strtok_r.c') diff --git a/lib/libc/string/strtok_r.c b/lib/libc/string/strtok_r.c index ee3fc243..274f6f08 100644 --- a/lib/libc/string/strtok_r.c +++ b/lib/libc/string/strtok_r.c @@ -1,4 +1,6 @@ -#include // for NULL, strchr, strtok_r +#include "stddef.h" // for NULL + +#include // for strchr, strtok_r char *strtok_r(char *restrict s, const char *restrict sep, char **restrict state) -- cgit v1.2.3