cryptpw: fix "cryptpw -a des -- TEXT" case
[oweals/busybox.git] / libbb / perror_msg_and_die.c
index 15f46fc05121bcc54f3f1f493adf19f1ebafed25..7b500736a80111c7cbccf1a285286aba3e585bf3 100644 (file)
@@ -19,3 +19,8 @@ void bb_perror_msg_and_die(const char *s, ...)
        va_end(p);
        xfunc_die();
 }
+
+void bb_simple_perror_msg_and_die(const char *s)
+{
+       bb_perror_msg_and_die("%s", s);
+}