Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions kernel/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ namespace mk
/// @return Returns bsl::errc_success on success, bsl::errc_failure
/// otherwise
///
[[nodiscard]] extern "C" auto
extern "C" [[nodiscard]] auto
dispatch_syscall_trampoline(tls_t *const pmut_tls) noexcept -> bsl::uint64
{
bsl::expects(nullptr != pmut_tls);
Expand Down Expand Up @@ -145,7 +145,7 @@ namespace mk
/// @return Returns bsl::errc_success on success, bsl::errc_failure
/// otherwise
///
[[nodiscard]] extern "C" auto
extern "C" [[nodiscard]] auto
mk_main(loader::mk_args_t *const pmut_args, tls_t *const pmut_tls) noexcept -> bsl::errc_type
{
bsl::expects(nullptr != pmut_tls);
Expand Down