dotfiles-mirror/dwm/util.c

37 lines
571 B
C
Raw Normal View History

2025-07-10 08:58:07 +03:30
/* See LICENSE file for copyright and license details. */
2026-02-05 03:05:24 +03:30
#include <errno.h>
2025-07-10 08:58:07 +03:30
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "util.h"
2025-07-29 04:42:29 +03:30
void
2026-02-05 03:05:24 +03:30
die(const char *fmt, ...)
{
2025-07-29 04:42:29 +03:30
va_list ap;
2026-02-05 03:05:24 +03:30
int saved_errno;
2025-07-10 08:58:07 +03:30
2026-02-05 03:05:24 +03:30
saved_errno = errno;
2025-07-10 08:58:07 +03:30
va_start(ap, fmt);
vfprintf(stderr, fmt, ap);
va_end(ap);
2026-02-05 03:05:24 +03:30
if (fmt[0] && fmt[strlen(fmt)-1] == ':')
fprintf(stderr, " %s", strerror(saved_errno));
fputc('\n', stderr);
2025-07-10 08:58:07 +03:30
exit(1);
}
2026-02-05 03:05:24 +03:30
void *
ecalloc(size_t nmemb, size_t size)
{
void *p;
if (!(p = calloc(nmemb, size)))
die("calloc:");
return p;
}