dotfiles/.suckless/dwm/util.c

38 lines
572 B
C
Raw Normal View History

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