diff options
Diffstat (limited to 'src/kstd.cpp')
| -rw-r--r-- | src/kstd.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/kstd.cpp b/src/kstd.cpp index 2149c12..77155af 100644 --- a/src/kstd.cpp +++ b/src/kstd.cpp @@ -5,6 +5,12 @@ 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); |
