*: make GNU licensing statement forms more regular
[oweals/busybox.git] / libbb / herror_msg.c
index 264690ba0a9a8bcaf12ef5b1e52b270bc27ac875..d041076e00001385bb04cc06a1a1693812faf9b7 100644 (file)
@@ -4,16 +4,25 @@
  *
  * Copyright (C) 1999-2004 by Erik Andersen <andersen@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 "libbb.h"
 
-void bb_herror_msg(const char *s, ...)
+void FAST_FUNC bb_herror_msg(const char *s, ...)
+{
+       va_list p;
+
+       va_start(p, s);
+       bb_verror_msg(s, p, hstrerror(h_errno));
+       va_end(p);
+}
+
+void FAST_FUNC bb_herror_msg_and_die(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
        bb_verror_msg(s, p, hstrerror(h_errno));
        va_end(p);
+       xfunc_die();
 }