mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-18 12:16:13 +08: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