/* * Copyright (c) 2018-2021, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Kernel { void handle_crash(Kernel::RegisterState const&, char const*, int, bool) { VERIFY_NOT_REACHED(); } }