mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-02 09:40:13 +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. */
|
because this code always jumps out anyway. */
|
||||||
);
|
);
|
||||||
|
|
||||||
/* This call avoids `volatile function does return' warnings. */
|
/* Avoid `volatile function does return' warnings. */
|
||||||
abort ();
|
for (;;);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user