traceroute: fix help text to not show -6 when traceroute6 is off
[oweals/busybox.git] / libbb / error_msg_and_die.c
index 842260b0f26762f5c6378c803bf5d759ebd15d1b..243433b2d5a2699c70e8361ad788f8768d694fd5 100644 (file)
@@ -7,19 +7,14 @@
  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  */
 
-#include <stdio.h>
-#include <errno.h>
-#include <string.h>
-#include <stdlib.h>
 #include "libbb.h"
 
-void bb_error_msg_and_die(const char *s, ...)
+void FAST_FUNC bb_error_msg_and_die(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       bb_verror_msg(s, p);
+       bb_verror_msg(s, p, NULL);
        va_end(p);
-       putc('\n', stderr);
-       exit(bb_default_error_retval);
+       xfunc_die();
 }