Replace call to abort by infinite loop, to avoid dragging stdio into

the dynamic linker.
This commit is contained in:
Ulrich Drepper 1997-08-04 14:26:01 +00:00
parent 6e8e1d85e0
commit e1da12893a

View 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 (;;);
}