From 568a0b7017e8e779731325083015907b006866c3 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 18 Apr 2024 16:47:36 +0200 Subject: LibC: Fix compiler warnings It can now compile with almost all compiler warnings turned on without producing any warnings. --- userland/libc/tb/sv.c | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/tb/sv.c') diff --git a/userland/libc/tb/sv.c b/userland/libc/tb/sv.c index 9bffce3..500d041 100644 --- a/userland/libc/tb/sv.c +++ b/userland/libc/tb/sv.c @@ -2,6 +2,7 @@ #include #include #include +#include char *SV_TO_C(struct sv s) { char *c_string = malloc(s.length + 1); -- cgit v1.2.3