diff options
Diffstat (limited to 'sysdeps/m68k/__longjmp.c')
-rw-r--r-- | sysdeps/m68k/__longjmp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/m68k/__longjmp.c b/sysdeps/m68k/__longjmp.c index c3e400c4c5..e6ec43c465 100644 --- a/sysdeps/m68k/__longjmp.c +++ b/sysdeps/m68k/__longjmp.c @@ -50,6 +50,6 @@ __longjmp (__jmp_buf env, int val) because this code always jumps out anyway. */ ); - /* This call avoids `volatile function does return' warnings. */ - abort (); + /* Avoid `volatile function does return' warnings. */ + for (;;); } |