X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=libbb%2Fperror_nomsg_and_die.c;h=dab3df60ab5a4599d74695c48d9ed07dfc746d40;hb=ec1a4b5a521b5adf295bc757c25231910f8c854b;hp=e5623c2a9321dd4d4d4ef8e5fbc2965632c57080;hpb=5d8843e451c01d8abfe6b5be772637310e9e581e;p=oweals%2Fbusybox.git diff --git a/libbb/perror_nomsg_and_die.c b/libbb/perror_nomsg_and_die.c index e5623c2a9..dab3df60a 100644 --- a/libbb/perror_nomsg_and_die.c +++ b/libbb/perror_nomsg_and_die.c @@ -7,11 +7,15 @@ * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. */ -#include -#include "libbb.h" +/* gcc warns about a null format string, therefore we provide + * modified definition without "attribute (format)" + * instead of including libbb.h */ +//#include "libbb.h" +extern void bb_perror_msg_and_die(const char *s, ...); +/* suppress gcc "no previous prototype" warning */ +void bb_perror_nomsg_and_die(void); void bb_perror_nomsg_and_die(void) { - /* Ignore the gcc warning about a null format string. */ - bb_perror_msg_and_die(NULL); + bb_perror_msg_and_die(0); }