Replace call to abort by infinite loop, to avoid dragging stdio into
the dynamic linker.
This commit is contained in:
parent
6e8e1d85e0
commit
e1da12893a
|
@ -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 (;;);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue