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/strcat.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/libc/string/strcat.c') diff --git a/lib/libc/string/strcat.c b/lib/libc/string/strcat.c index 6caf8c78..f7267f00 100644 --- a/lib/libc/string/strcat.c +++ b/lib/libc/string/strcat.c @@ -1,3 +1,5 @@ +#include // for strcat + char *strcat(char *restrict s1, const char *restrict s2) { char *d = s1; -- cgit v1.2.3