* gdb.base/signull.c: Use sigjmp_buf instead of jmp_buf.

This commit is contained in:
Mark Kettenis 2004-05-22 13:14:22 +00:00
parent 8b89a4eb74
commit 8f5a310353
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2004-05-22 Mark Kettenis <kettenis@gnu.org>
* gdb.base/signull.c: Use sigjmp_buf instead of jmp_buf.
2004-05-21 Joel Brobecker <brobecker@gnat.com>
Daniel Jacobowitz <drow@mvista.com>

View File

@ -34,7 +34,7 @@ typedef long code_t (void);
static volatile data_t *data[10];
static volatile code_t *code[10];
jmp_buf env;
sigjmp_buf env;
extern void
keeper (int sig)