1 /* See LICENSE file for copyright and license details. */
10 die(const char *fmt
, ...)
15 vfprintf(stderr
, fmt
, ap
);
18 if (fmt
[0] && fmt
[strlen(fmt
)-1] == ':') {
29 ecalloc(size_t nmemb
, size_t size
)
33 if (!(p
= calloc(nmemb
, size
)))