aboutsummaryrefslogtreecommitdiff
path: root/src/mem.c
blob: 4312308eaf1a2c88591911d6b51f93cd163c9dfd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#include <config.h>
#include <stdlib.h>
#include <string.h>
#include "defs.h"
#include "json.h"

void
emalloc_die(void)
{
	fatal("not enough memory");
	exit(2);
}

void *
emalloc(size_t s)
{
	void *p = malloc(s);
	if (!p)
		emalloc_die();
	return p;
}

void *
e2nrealloc(void *p, size_t *pn, size_t s)
{
	char *n = json_2nrealloc(p, pn, s);
	if (!n)
		emalloc_die();
	return n;
}

char *
estrdup(char const *s)
{
	return strcpy(emalloc(strlen(s) + 1), s);
}

Return to:

Send suggestions and report system problems to the System administrator.