mirror of
https://github.com/mirror/tinycc.git
synced 2024-12-28 04:00:06 +08:00
NetBSD: longjmp(jmp_buf, 0) is not supported.
This commit is contained in:
parent
b9db7c90ee
commit
16ed67537c
@ -145,7 +145,8 @@ static void check (void)
|
||||
}
|
||||
last_value = value;
|
||||
switch (value) {
|
||||
#ifndef __FreeBSD__ /* longjmp(jmp_buf, 0) not supported */
|
||||
#if !(defined(__FreeBSD__) || defined(__NetBSD__))
|
||||
/* longjmp(jmp_buf, 0) not supported */
|
||||
case 0:
|
||||
jump (0);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user