blob: 7686c4d2788a6e9e146a653dcdbb072a88339529 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
/* 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];
|