pidfile.c: not used anymore
[oweals/busybox.git] / libbb / perror_nomsg_and_die.c
index e5623c2a9321dd4d4d4ef8e5fbc2965632c57080..dab3df60ab5a4599d74695c48d9ed07dfc746d40 100644 (file)
@@ -7,11 +7,15 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#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"
+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);
 }