aboutsummaryrefslogtreecommitdiff
path: root/kernel/src/kstd/os.cpp
blob: 5280f9caad4003e7119c22b0d50cb6936f40e5b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  {
    teachos::system::panic(message, location);
  }

}  // namespace kstd::os