Fixes so "make allnoconfig" works again.
[oweals/busybox.git] / libbb / vperror_msg.c
index 7da5bae0a6ed41024fff7196d18173bc08f7cd61..5c446967ab19748a0abde5054851e040c0fbde44 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
+ * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 #include <stdlib.h>
 #include "libbb.h"
 
-extern void vperror_msg(const char *s, va_list p)
+extern void bb_vperror_msg(const char *s, va_list p)
 {
        int err=errno;
        if(s == 0) s = "";
-       verror_msg(s, p);
+       bb_verror_msg(s, p);
        if (*s) s = ": ";
        fprintf(stderr, "%s%s\n", s, strerror(err));
 }