#include "kern/error.hpp" #include namespace kstd::os { auto panic(std::string_view message, std::source_location location) -> void { teachos::panic(message, location); } } // namespace kstd::os