mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-17 13:17:33 +00:00
16 lines
276 B
C
16 lines
276 B
C
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Platform.h>
|
|
|
|
#if ARCH(X86_64) || ARCH(I386)
|
|
# include <Kernel/Arch/x86/mcontext.h>
|
|
#elif ARCH(AARCH64)
|
|
# error "Unknown architecture"
|
|
#endif
|