You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
297 B

18 years ago
  1. /*
  2. * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
  3. * See LICENSE file for license details.
  4. */
  5. #include <stdarg.h>
  6. #include <stdio.h>
  7. #include <stdlib.h>
  8. void
  9. error(char *errstr, ...) {
  10. va_list ap;
  11. va_start(ap, errstr);
  12. vfprintf(stderr, errstr, ap);
  13. va_end(ap);
  14. exit(1);
  15. }