Patch from vodz:
[oweals/busybox.git] / libbb / herror_msg.c
index 1081a56b1a85762dd915da96c1ff1aec533de8ae..fb2a17b735c8860c35e50ae069a3aa1672781b8b 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * Utility routines.
  *
- * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
+ * Copyright (C) 1999-2003 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 "libbb.h"
 
-extern void herror_msg(const char *s, ...)
+extern void bb_herror_msg(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       vherror_msg(s, p);
+       bb_vherror_msg(s, p);
        va_end(p);
 }