Patch from vodz:
[oweals/busybox.git] / libbb / perror_msg.c
index 8c57b0d161c94a5b6bf44c09872a5870ee001ef4..0928e4371dc9437b6577d3cd94a87ab0824ffa23 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 <stdlib.h>
 #include "libbb.h"
 
-extern void perror_msg(const char *s, ...)
+extern void bb_perror_msg(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       vperror_msg(s, p);
+       bb_vperror_msg(s, p);
        va_end(p);
 }