xref: /haiku/src/system/libroot/posix/arch/riscv64/siglongjmp.S (revision 21258e2674226d6aa732321b6f8494841895af5f)
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