From 2c42d417f6b40aff91f62bf5d63fef726b976dfb Mon Sep 17 00:00:00 2001 From: offa Date: Wed, 18 Dec 2024 19:28:47 +0100 Subject: [PATCH] Test --- system/src/newlib/_cxx.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/src/newlib/_cxx.cpp b/system/src/newlib/_cxx.cpp index efcb451..bfc2e29 100644 --- a/system/src/newlib/_cxx.cpp +++ b/system/src/newlib/_cxx.cpp @@ -26,7 +26,7 @@ namespace __gnu_cxx __verbose_terminate_handler() { trace_puts(__func__); - abort(); + ::abort(); } } @@ -42,7 +42,7 @@ extern "C" __cxa_pure_virtual() { trace_puts(__func__); - abort(); + ::abort(); } }