diff options
Diffstat (limited to 'kernel/src/kstd.cpp')
| -rw-r--r-- | kernel/src/kstd.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/kernel/src/kstd.cpp b/kernel/src/kstd.cpp new file mode 100644 index 0000000..2149c12 --- /dev/null +++ b/kernel/src/kstd.cpp @@ -0,0 +1,13 @@ +#include "kapi/system.hpp" + +#include <kstd/bits/os.hpp> + +namespace kstd::os +{ + + auto panic(std::string_view message, std::source_location location) -> void + { + teachos::system::panic(message, location); + } + +} // namespace kstd::os
\ No newline at end of file |
