glibc/sysdeps/vax/bits/setjmp.h

12 lines
232 B
C
Raw Normal View History

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