summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2009-02-23 03:48:33 +0100
committerNeal H. Walfield <neal@gnu.org>2009-02-23 03:48:33 +0100
commitdc18437f3e83bdb029211ef7237bd0408961301f (patch)
treeac581220c05dd1a5baac46e611545802d6fc4fa4
parente0afbeda30302cb396c31f15ea5556841bd45ece (diff)
Fix sig_jmpbuf's type for x86-64.
-rw-r--r--newlib/patches/05-newlib-newlib-libc-include-machine-setjmp-h.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/newlib/patches/05-newlib-newlib-libc-include-machine-setjmp-h.patch b/newlib/patches/05-newlib-newlib-libc-include-machine-setjmp-h.patch
index 8a16286..208d7a7 100644
--- a/newlib/patches/05-newlib-newlib-libc-include-machine-setjmp-h.patch
+++ b/newlib/patches/05-newlib-newlib-libc-include-machine-setjmp-h.patch
@@ -20,7 +20,7 @@ Enable sigjmp_buf.
/* POSIX sigsetjmp/siglongjmp macros */
-typedef int sigjmp_buf[_JBLEN+2];
-+typedef int sigjmp_buf[_JBLEN+1+(sizeof (sigset_t)/sizeof (int))];
++typedef _JBTYPE sigjmp_buf[_JBLEN+1+(sizeof (sigset_t)/sizeof (int))];
#define _SAVEMASK _JBLEN
#define _SIGMASK (_JBLEN+1)