From: Ulrich Drepper Date: Sat, 21 Jun 1997 02:30:10 +0000 (+0000) Subject: Vax specific setjmp buffer. X-Git-Tag: glibc-2.16-ports-before-merge~3538 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1632e8a1b3631c40b19f2f868aa244948837be54;p=thirdparty%2Fglibc.git Vax specific setjmp buffer. --- diff --git a/sysdeps/vax/bits/setjmp.h b/sysdeps/vax/bits/setjmp.h new file mode 100644 index 00000000000..7adecd9a173 --- /dev/null +++ b/sysdeps/vax/bits/setjmp.h @@ -0,0 +1,7 @@ +/* Define the machine-dependent type `jmp_buf'. Vax version. */ + +typedef struct + { + PTR __fp; + PTR __pc; + } __jmp_buf[1];