From 7d6f0ed063790042a808f4bf07c50d308b3f2de4 Mon Sep 17 00:00:00 2001 From: Felix Morgner Date: Fri, 16 Jan 2026 13:36:38 +0100 Subject: chore: restructure namespaces --- kernel/kstd/os.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 kernel/kstd/os.cpp (limited to 'kernel/kstd/os.cpp') diff --git a/kernel/kstd/os.cpp b/kernel/kstd/os.cpp new file mode 100644 index 0000000..21254c4 --- /dev/null +++ b/kernel/kstd/os.cpp @@ -0,0 +1,16 @@ +#include "kapi/system.hpp" + +#include + +#include +#include + +namespace kstd::os +{ + + auto panic(std::string_view message, std::source_location location) -> void + { + kapi::system::panic(message, location); + } + +} // namespace kstd::os \ No newline at end of file -- cgit v1.2.3