quick patch - have removed stranges for me
[oweals/busybox.git] / libbb / error_msg.c
index 58308b6be8c403eb1249e3383c40878f0d03eb3a..18811b8d1eac37f088e26a308aa0cbf885d2a355 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 error_msg(const char *s, ...)
+extern void bb_error_msg(const char *s, ...)
 {
        va_list p;
 
        va_start(p, s);
-       verror_msg(s, p);
+       bb_verror_msg(s, p);
        va_end(p);
        putc('\n', stderr);
 }