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