/* * Copyright (c) 2023, Liav A. * * SPDX-License-Identifier: BSD-2-Clause */ #include #ifdef KERNEL # include #endif namespace AK { Error Error::from_string_view_or_print_error_and_return_errno(StringView string_literal, [[maybe_unused]] int code) { #ifdef KERNEL dmesgln("{}", string_literal); return Error::from_errno(code); #else return Error::from_string_view(string_literal); #endif } }