1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-26 01:25:08 +00:00
serenity/Userland/Libraries/LibC/arch/aarch64/setjmp.S
Nico Weber bbad4758b2 CMake: Let Meta/serenity.sh run aarch64 make it past cmake
This adds just enough scaffolding to make cmake succeed.
The build falls over immediately.
2021-08-28 14:43:07 +01:00

15 lines
241 B
ArmAsm

/*
* Copyright (c) 2021, Nico Weber <thakis@chromium.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
.global setjmp
setjmp:
# FIXME: Possibly incomplete.
ret
.global longjmp
longjmp:
# FIXME: Possibly incomplete.
ret