]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Replace call to abort by infinite loop, to avoid dragging stdio into
authorUlrich Drepper <drepper@redhat.com>
Mon, 4 Aug 1997 14:26:01 +0000 (14:26 +0000)
committerUlrich Drepper <drepper@redhat.com>
Mon, 4 Aug 1997 14:26:01 +0000 (14:26 +0000)
the dynamic linker.

sysdeps/m68k/__longjmp.c

index c3e400c4c5c962e009343c3a11c422c16a90cbc9..e6ec43c4655e9bedaa9ccae656adc18f81d32d4d 100644 (file)
@@ -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 (;;);
 }