2001-03-16 22:47:14 +00:00
|
|
|
/* vi: set sw=4 ts=4: */
|
|
|
|
/*
|
2003-03-19 09:13:01 +00:00
|
|
|
* bb_perror_nomsg implementation for busybox
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2003-03-19 09:13:01 +00:00
|
|
|
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
|
2001-03-16 22:47:14 +00:00
|
|
|
*
|
2010-08-16 20:14:46 +02:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
2023-06-12 10:19:29 +02:00
|
|
|
#include "libbb.h"
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC bb_perror_nomsg(void)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2023-06-12 10:19:29 +02:00
|
|
|
bb_simple_perror_msg("");
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|