From: Ulrich Drepper Date: Mon, 4 Aug 1997 14:26:01 +0000 (+0000) Subject: Replace call to abort by infinite loop, to avoid dragging stdio into X-Git-Tag: glibc-2.16-ports-before-merge~3444 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e1da12893a2966dfc9ee4981c5a98c8b3afe70c1;p=thirdparty%2Fglibc.git Replace call to abort by infinite loop, to avoid dragging stdio into the dynamic linker. --- diff --git a/sysdeps/m68k/__longjmp.c b/sysdeps/m68k/__longjmp.c index c3e400c4c5c..e6ec43c4655 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 (;;); }