sent/util.c

36 lines
517 B
C
Raw Normal View History

2015-04-05 13:48:47 +00:00
/* See LICENSE file for copyright and license details. */
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
2016-05-21 19:39:58 +00:00
#include <string.h>
2015-04-05 13:48:47 +00:00
#include "util.h"
2016-05-21 19:39:58 +00:00
void *
ecalloc(size_t nmemb, size_t size)
{
void *p;
if (!(p = calloc(nmemb, size)))
2016-11-04 18:45:08 +00:00
die("calloc:");
2016-05-21 19:39:58 +00:00
return p;
}
2015-04-05 13:48:47 +00:00
void
2016-05-21 19:39:58 +00:00
die(const char *fmt, ...) {
2015-04-05 13:48:47 +00:00
va_list ap;
2016-05-21 19:39:58 +00:00
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
2015-04-05 13:48:47 +00:00
va_end(ap);
2016-05-21 19:39:58 +00:00
if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
fputc(' ', stderr);
perror(NULL);
2016-08-11 19:47:57 +00:00
} else {
fputc('\n', stderr);
2016-05-21 19:39:58 +00:00
}
2015-11-07 22:52:35 +00:00
exit(1);
2015-04-05 13:48:47 +00:00
}