From 81819f711e6d1f9216f688da8ecbbc682d106d9c Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 23 Nov 2023 00:52:35 +0100 Subject: LibC: Reduce warnings in code --- userland/libc/stdio/rename.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'userland/libc/stdio/rename.c') diff --git a/userland/libc/stdio/rename.c b/userland/libc/stdio/rename.c index 15d4bf5..a02cacb 100644 --- a/userland/libc/stdio/rename.c +++ b/userland/libc/stdio/rename.c @@ -1,8 +1,9 @@ -#include #include +#include int rename(const char *old, const char *new) { - (void)old; - (void)new; + (void)old; + (void)new; assert(0); // TODO: Implement - } + return 0; +} -- cgit v1.2.3