mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 15:00:06 +00:00
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
Block a user