summaryrefslogtreecommitdiff
path: root/sysdeps/arm/bits/setjmp.h
blob: 93b0f5f9169637b5dfd479f89d2cef66feb73145 (plain)
1
2
3
4
5
6
7
8
9
10
/* Define the machine-dependent type `jmp_buf'.  ARM version. */

#ifndef _ASM
/* Jump buffer contains v1-v6, sl, fp, sp, pc and (f4-f7) if we do FP. */
#if __ARM_USES_FP
typedef int __jmp_buf[22];
#else
typedef int __jmp_buf[10];
#endif
#endif