Start 1.33.0 development cycle
[oweals/busybox.git] / libbb / perror_nomsg_and_die.c
index e5623c2a9321dd4d4d4ef8e5fbc2965632c57080..bea5f25a52b30fac10dad0025a14cc003f780b5c 100644 (file)
@@ -4,14 +4,19 @@
  *
  * Copyright (C) 2003  Manuel Novoa III  <mjn3@codepoet.org>
  *
- * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
+ * Licensed under GPLv2 or later, see file LICENSE in this source tree.
  */
 
-#include <stddef.h>
-#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"
+#include "platform.h"
+extern void bb_simple_perror_msg_and_die(const char *s) FAST_FUNC;
 
-void bb_perror_nomsg_and_die(void)
+/* suppress gcc "no previous prototype" warning */
+void FAST_FUNC bb_perror_nomsg_and_die(void);
+void FAST_FUNC bb_perror_nomsg_and_die(void)
 {
-       /* Ignore the gcc warning about a null format string. */
-       bb_perror_msg_and_die(NULL);
+       bb_simple_perror_msg_and_die(0);
 }