error_msg.c 418 B

1234567891011121314151617181920212223
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * Utility routines.
  4. *
  5. * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
  6. *
  7. * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
  8. */
  9. #include <stdio.h>
  10. #include <errno.h>
  11. #include <string.h>
  12. #include <stdlib.h>
  13. #include "libbb.h"
  14. void bb_error_msg(const char *s, ...)
  15. {
  16. va_list p;
  17. va_start(p, s);
  18. bb_verror_msg(s, p, NULL);
  19. va_end(p);
  20. }