man: use default MANPATH of "/usr/man"; do not search paths twice
[oweals/busybox.git] / libbb / error_msg.c
index a8ed4bf8e55409c0f5401be0210b522c6988ebdf..802fd5715eae523798831956811833861b4020ae 100644 (file)
@@ -7,18 +7,13 @@
  * 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(const char *s, ...)
+void FAST_FUNC bb_error_msg(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);
 }