mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-01 09:20:19 +00:00
12 lines
232 B
C
12 lines
232 B
C
/* Define the machine-dependent type `jmp_buf'. Vax version. */
|
|
|
|
#ifndef _SETJMP_H
|
|
# error "Never include <bits/setjmp.h> directly; use <setjmp.h> instead."
|
|
#endif
|
|
|
|
typedef struct
|
|
{
|
|
PTR __fp;
|
|
PTR __pc;
|
|
} __jmp_buf[1];
|