util.c 278 B

1234567891011121314151617
  1. /* See LICENSE file for copyright and license details. */
  2. #include <stdarg.h>
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5. #include "util.h"
  6. void
  7. die(const char *errstr, ...) {
  8. va_list ap;
  9. va_start(ap, errstr);
  10. vfprintf(stderr, errstr, ap);
  11. va_end(ap);
  12. exit(EXIT_FAILURE);
  13. }