xref: /haiku/src/system/libroot/posix/arch/sparc/siglongjmp.S (revision bb83316a5811a550c4f850d07fa8e328e7ac0a94)
1/*
2 * Copyright 2019, Adrien Destugues, pulkomandy@pulkomandy.tk
3 * Distributed under the terms of the Haiku 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