aboutsummaryrefslogblamecommitdiffstats
path: root/enmalloc.c
blob: 570f0a65b9e61b1dad90b57f240254408ecec1df (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
















                                                                            
/* See LICENSE file for copyright and license details. */
#include "libsimple.h"


extern char *argv0;


void *
enmalloc(int status, size_t n)
{
	void *ret = malloc(n);
	if (!ret) {
		fprintf(stderr, "%s: malloc: %s\n", argv0, strerror(errno));
		exit(status);
	}
	return ret;
}