mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-22 17:31:58 -05:00
18 lines
272 B
C++
18 lines
272 B
C++
/*
|
|
* Copyright (c) 2024, Sönke Holz <sholz8530@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Error.h>
|
|
|
|
#include <Kernel/Firmware/EFI/EFI.h>
|
|
|
|
namespace Kernel {
|
|
|
|
template<typename T>
|
|
using EFIErrorOr = ErrorOr<T, EFI::Status>;
|
|
|
|
}
|