Initial revision

This commit is contained in:
Roland McGrath 1989-09-21 23:40:14 +00:00
parent 0ec5b20109
commit e900489009
1 changed files with 9 additions and 0 deletions

9
sysdeps/sparc/jmp_buf.h Normal file
View File

@ -0,0 +1,9 @@
/* Define the machine-dependent type `jmp_buf'. Sun 4 version. */
typedef struct
{
/* Return PC (register o7). */
PTR __pc;
/* Saved FP. */
PTR __fp;
} jmp_buf[1];