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

#ifndef _SETJMP_H
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
#endif

#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