Update.
[glibc.git] / sysdeps / arm / jmp_buf.h
blob93b0f5f9169637b5dfd479f89d2cef66feb73145
1 /* Define the machine-dependent type `jmp_buf'. ARM version. */
3 #ifndef _ASM
4 /* Jump buffer contains v1-v6, sl, fp, sp, pc and (f4-f7) if we do FP. */
5 #if __ARM_USES_FP
6 typedef int __jmp_buf[22];
7 #else
8 typedef int __jmp_buf[10];
9 #endif
10 #endif