2006-08-04 09:35:27 +02:00
|
|
|
/*
|
|
|
|
* (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
|
|
|
|
* See LICENSE file for license details.
|
|
|
|
*/
|
|
|
|
#include "dmenu.h"
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
/* static */
|
|
|
|
|
|
|
|
static void
|
2006-08-21 07:34:16 +02:00
|
|
|
badmalloc(unsigned int size)
|
2006-08-04 09:35:27 +02:00
|
|
|
{
|
|
|
|
eprint("fatal: could not malloc() %u bytes\n", size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* extern */
|
|
|
|
|
|
|
|
void *
|
|
|
|
emalloc(unsigned int size)
|
|
|
|
{
|
|
|
|
void *res = malloc(size);
|
|
|
|
if(!res)
|
2006-08-21 07:34:16 +02:00
|
|
|
badmalloc(size);
|
2006-08-04 09:35:27 +02:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
eprint(const char *errstr, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, errstr);
|
|
|
|
vfprintf(stderr, errstr, ap);
|
|
|
|
va_end(ap);
|
|
|
|
exit(EXIT_FAILURE);
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
estrdup(const char *str)
|
|
|
|
{
|
|
|
|
void *res = strdup(str);
|
|
|
|
if(!res)
|
2006-08-21 07:34:16 +02:00
|
|
|
badmalloc(strlen(str));
|
2006-08-04 09:35:27 +02:00
|
|
|
return res;
|
|
|
|
}
|