Major coreutils update.
This commit is contained in:
@ -25,15 +25,15 @@
|
||||
#include <stdlib.h>
|
||||
#include "libbb.h"
|
||||
|
||||
extern void error_msg_and_die(const char *s, ...)
|
||||
extern void bb_error_msg_and_die(const char *s, ...)
|
||||
{
|
||||
va_list p;
|
||||
|
||||
va_start(p, s);
|
||||
verror_msg(s, p);
|
||||
bb_verror_msg(s, p);
|
||||
va_end(p);
|
||||
putc('\n', stderr);
|
||||
exit(EXIT_FAILURE);
|
||||
exit(bb_default_error_retval);
|
||||
}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user