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 18:14:46 +00:00
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this source tree.
|
2001-03-16 22:47:14 +00:00
|
|
|
*/
|
|
|
|
|
2006-12-26 18:17:42 +00:00
|
|
|
/* gcc warns about a null format string, therefore we provide
|
|
|
|
* modified definition without "attribute (format)"
|
|
|
|
* instead of including libbb.h */
|
|
|
|
//#include "libbb.h"
|
2008-06-27 02:52:20 +00:00
|
|
|
#include "platform.h"
|
|
|
|
extern void bb_perror_msg(const char *s, ...) FAST_FUNC;
|
2001-03-16 22:47:14 +00:00
|
|
|
|
2007-01-22 23:04:27 +00:00
|
|
|
/* suppress gcc "no previous prototype" warning */
|
2008-06-27 02:52:20 +00:00
|
|
|
void FAST_FUNC bb_perror_nomsg(void);
|
|
|
|
void FAST_FUNC bb_perror_nomsg(void)
|
2001-03-16 22:47:14 +00:00
|
|
|
{
|
2006-12-26 18:17:42 +00:00
|
|
|
bb_perror_msg(0);
|
2001-03-16 22:47:14 +00:00
|
|
|
}
|