mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-07 11:39:44 +03:00
14 lines
265 B
C
14 lines
265 B
C
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if defined(__x86_64__)
|
|
# include <Kernel/Arch/x86_64/mcontext.h>
|
|
#elif defined(__aarch64__)
|
|
# include <Kernel/Arch/aarch64/mcontext.h>
|
|
#endif
|