This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "A pseudo Operating System for the Dreamcast.".
The branch, master has been updated
via c86818033aa60180853d8006de031093a26be37f (commit)
from ecbde5de56c6f7260afcaab0ad10b92295ba6bc7 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c86818033aa60180853d8006de031093a26be37f
Author: Falco Girgis <gyr...@gm...>
Date: Wed Jun 5 15:43:38 2024 -0500
Fixed broken build. (#612)
- Accidentally marked kos_shutdown() static and didn't realize I had
screwed up an external symbol, because I didn't test linking an
example. My bad.
-----------------------------------------------------------------------
Summary of changes:
kernel/libc/newlib/newlib_exit.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/kernel/libc/newlib/newlib_exit.c b/kernel/libc/newlib/newlib_exit.c
index a2d8a56c..b44c1438 100644
--- a/kernel/libc/newlib/newlib_exit.c
+++ b/kernel/libc/newlib/newlib_exit.c
@@ -13,7 +13,7 @@ extern void arch_exit_handler(int ret_code) __noreturn;
static int ret_code;
-static void kos_shutdown(void) {
+void kos_shutdown(void) {
arch_exit_handler(ret_code);
__builtin_unreachable();
hooks/post-receive
--
A pseudo Operating System for the Dreamcast.
|