libroot/posix/stdio: Remove unused portions.
[haiku.git] / src / system / libroot / posix / arch / arm / siglongjmp.S
blob9101e23bb844b67861697219ce406c0669cd2439
1 /* 
2  * Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>. All rights
3  * reserved. Distributed under the terms of the Haiku License.
4  */
6 #include <asm_defs.h>
8 /* int __siglongjmp(jmp_buf buffer, int value) */
9 FUNCTION(siglongjmp):
10 FUNCTION(longjmp):
11 FUNCTION(_longjmp):
12         str     r1, [r0, #4]
13         ldmia   r0, {r0-r14}
14         b       __longjmp_return
15 FUNCTION_END(siglongjmp)
16 FUNCTION_END(longjmp)
17 FUNCTION_END(_longjmp)
19 #pragma weak longjmp=siglongjmp