#include "kapi/system.hpp" #include namespace kstd::os { auto abort() -> bool { panic("Abort called."); return true; } auto panic(std::string_view message, std::source_location location) -> void { teachos::system::panic(message, location); } } // namespace kstd::os