initial import
[glibc.git] / sysdeps / sparc / jmp_buf.h
bloba5a592fd47a794a63ff95bd5e6dc8d99f1b41655
1 /* Define the machine-dependent type `jmp_buf'. SPARC version. */
3 /* NOTE: The assembly code in __longjmp.S and setjmp.S knows the layout
4 of this structure. You must hack the assembly code if you want to change
5 the order of the members. */
7 typedef struct
9 /* Return PC (register o7). */
10 __ptr_t __pc;
12 /* Saved FP. */
13 __ptr_t __fp;
14 } __jmp_buf[1];