From 15003d1b0abccc8bcef84386c4a6da176e41f883 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Sun, 9 Jun 2024 22:05:53 +0200 Subject: Add UDP --- kernel/libc/string/copy.c | 1 + 1 file changed, 1 insertion(+) (limited to 'kernel/libc') diff --git a/kernel/libc/string/copy.c b/kernel/libc/string/copy.c index 4acbbf4..3ab5618 100644 --- a/kernel/libc/string/copy.c +++ b/kernel/libc/string/copy.c @@ -2,6 +2,7 @@ #include #include #include +#include char *copy_and_allocate_string(const char *s) { size_t l = strlen(s) + 1; -- cgit v1.2.3