#include "kstd/bits/os.hpp" namespace kstd { extern "C" { [[noreturn]] auto abort() -> void { if (!kstd::os::abort()) { os::panic("System abort handler returned."); } __builtin_trap(); } } } // namespace kstd