diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-01-16 13:36:38 +0100 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-01-16 13:36:38 +0100 |
| commit | 7d6f0ed063790042a808f4bf07c50d308b3f2de4 (patch) | |
| tree | 1a2e1c4ed7e2f3d8e6cdcfb012e554d1a4eb1e5a /kernel/kstd/os.cpp | |
| parent | 9750405757396d006ab6992fb93baf414b3e2ae8 (diff) | |
| download | teachos-7d6f0ed063790042a808f4bf07c50d308b3f2de4.tar.xz teachos-7d6f0ed063790042a808f4bf07c50d308b3f2de4.zip | |
chore: restructure namespaces
Diffstat (limited to 'kernel/kstd/os.cpp')
| -rw-r--r-- | kernel/kstd/os.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
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 <kstd/os/error.hpp> + +#include <source_location> +#include <string_view> + +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 |
