mirror of
https://git.busybox.net/busybox.git
synced 2024-11-26 23:23:35 +08:00
4bd70463c7
function old new delta bb_perror_nomsg_and_die 9 10 +1 bb_perror_nomsg 9 10 +1 bb_verror_msg 480 469 -11 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/1 up/down: 2/-11) Total: -9 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
15 lines
305 B
C
15 lines
305 B
C
/* vi: set sw=4 ts=4: */
|
|
/*
|
|
* bb_perror_nomsg implementation for busybox
|
|
*
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
|
*
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
|
*/
|
|
#include "libbb.h"
|
|
|
|
void FAST_FUNC bb_perror_nomsg(void)
|
|
{
|
|
bb_simple_perror_msg("");
|
|
}
|