This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
2022-09-28 09:39:54 +02:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
void
|
2024-02-05 17:56:12 +01:00
|
|
|
die(const char *fmt, ...)
|
|
|
|
{
|
2022-09-28 09:39:54 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
|
|
|
|
if (fmt[0] && fmt[strlen(fmt)-1] == ':') {
|
|
|
|
fputc(' ', stderr);
|
|
|
|
perror(NULL);
|
|
|
|
} else {
|
|
|
|
fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
exit(1);
|
|
|
|
}
|
2024-02-05 17:56:12 +01:00
|
|
|
|
|
|
|
void *
|
|
|
|
ecalloc(size_t nmemb, size_t size)
|
|
|
|
{
|
|
|
|
void *p;
|
|
|
|
|
|
|
|
if (!(p = calloc(nmemb, size)))
|
|
|
|
die("calloc:");
|
|
|
|
return p;
|
|
|
|
}
|