1997-06-21 02:30:10 +00:00
|
|
|
/* Define the machine-dependent type `jmp_buf'. Vax version. */
|
|
|
|
|
1997-11-26 04:14:44 +00:00
|
|
|
#ifndef _SETJMP_H
|
|
|
|
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
|
|
|
|
#endif
|
|
|
|
|
1997-06-21 02:30:10 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
PTR __fp;
|
|
|
|
PTR __pc;
|
|
|
|
} __jmp_buf[1];
|