From c2412fe710b619c6de2260e99d37b82ce324a7a8 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Mon, 27 Jan 2025 23:31:34 +0200 Subject: [PATCH] userspace/libc_test: add return statement to main function Signed-off-by: EnderIce2 --- Userspace/apps/test/libc_test/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Userspace/apps/test/libc_test/main.c b/Userspace/apps/test/libc_test/main.c index a02ea96c..e17e8d2e 100644 --- a/Userspace/apps/test/libc_test/main.c +++ b/Userspace/apps/test/libc_test/main.c @@ -17,4 +17,5 @@ int main(int argc, char *argv[]) { + return 0; }