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/sys/stat/stat.c | 1 + 1 file changed, 1 insertion(+) (limited to 'userland/libc/sys/stat/stat.c') diff --git a/userland/libc/sys/stat/stat.c b/userland/libc/sys/stat/stat.c index 00b4f52..21501c2 100644 --- a/userland/libc/sys/stat/stat.c +++ b/userland/libc/sys/stat/stat.c @@ -4,6 +4,7 @@ #include #include #include +#include int stat(const char *path, struct stat *buf) { int fd = open(path, O_RDONLY); -- cgit v1.2.3