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.

37 lines
572 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <errno.h>
  3. #include <stdarg.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>
  6. #include <string.h>
  7. #include "util.h"
  8. void
  9. die(const char *fmt, ...)
  10. {
  11. va_list ap;
  12. int saved_errno;
  13. saved_errno = errno;
  14. va_start(ap, fmt);
  15. vfprintf(stderr, fmt, ap);
  16. va_end(ap);
  17. if (fmt[0] && fmt[strlen(fmt)-1] == ':')
  18. fprintf(stderr, " %s", strerror(saved_errno));
  19. fputc('\n', stderr);
  20. exit(1);
  21. }
  22. void *
  23. ecalloc(size_t nmemb, size_t size)
  24. {
  25. void *p;
  26. if (!(p = calloc(nmemb, size)))
  27. die("calloc:");
  28. return p;
  29. }