NetBSD: longjmp(jmp_buf, 0) is not supported.
This commit is contained in:
parent
b9db7c90ee
commit
16ed67537c
1 changed files with 2 additions and 1 deletions
|
@ -145,7 +145,8 @@ static void check (void)
|
||||||
}
|
}
|
||||||
last_value = value;
|
last_value = value;
|
||||||
switch (value) {
|
switch (value) {
|
||||||
#ifndef __FreeBSD__ /* longjmp(jmp_buf, 0) not supported */
|
#if !(defined(__FreeBSD__) || defined(__NetBSD__))
|
||||||
|
/* longjmp(jmp_buf, 0) not supported */
|
||||||
case 0:
|
case 0:
|
||||||
jump (0);
|
jump (0);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Reference in a new issue