xref: /haiku/src/system/libroot/posix/arch/riscv64/siglongjmp.S (revision 9f739dd2e868114ce19ae73afcff07caf2ddb8b6)
1/*
2 * Copyright 2019, Adrien Destugues, pulkomandy@pulkomandy.tk
3 * Distributed under the terms of the MIT License.
4 */
5
6
7#include <asm_defs.h>
8
9
10/* int __siglongjmp(jmp_buf buffer, int value) */
11FUNCTION(siglongjmp):
12FUNCTION(longjmp):
13FUNCTION(_longjmp):
14	ret
15FUNCTION_END(siglongjmp)
16FUNCTION_END(longjmp)
17FUNCTION_END(_longjmp)
18
19#pragma weak longjmp=siglongjmp
20
21