glibc/sysdeps/i386/jmp_buf.h
1995-02-18 01:27:10 +00:00

10 lines
195 B
C

/* Define the machine-dependent type `jmp_buf'. Intel 386 version. */
typedef struct
{
long int __bx, __si, __di;
__ptr_t __bp;
__ptr_t __sp;
__ptr_t __pc;
} __jmp_buf[1];