Use sigjmp_buf with sig{set,long}jmp, not jmp_buf

Patch from Ivo Raisr on BZ#331257


git-svn-id: svn://svn.valgrind.org/valgrind/trunk@13812 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/NEWS b/NEWS
index 85bdb7c..a520a3d 100644
--- a/NEWS
+++ b/NEWS
@@ -52,6 +52,7 @@
 330469  Add clock_adjtime syscall support
 330939  Support for AMD's syscall instruction on x86
 330941  Typo in PRE(poll) syscall wrapper
+331257  Fix type of jump buffer in test none/tests/faultstatus
 n-i-bz  Fix KVM_CREATE_IRQCHIP ioctl handling
 
 Release 3.9.0 (31 October 2013)
diff --git a/none/tests/faultstatus.c b/none/tests/faultstatus.c
index 230865c..ee30ab1 100644
--- a/none/tests/faultstatus.c
+++ b/none/tests/faultstatus.c
@@ -41,7 +41,7 @@
 
 static int zero();
 
-static jmp_buf escape;
+static sigjmp_buf escape;
 
 #define BADADDR	((int *)0x1234)