summaryrefslogtreecommitdiff
path: root/utils/Burg/zalloc.c
blob: 9128e4280f20b73c6e12418a2d4818d71d1265be (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
char rcsid_zalloc[] = "$Id$";

#include <stdio.h>
#include <string.h>
#include "b.h"

extern void exit ARGS((int));
extern void free ARGS((void *));
extern void *malloc ARGS((unsigned));

int
fatal(const char *name, int line)
{
	fprintf(stderr, "assertion failed: file %s, line %d\n", name, line);
	exit(1);
	return 0;
}

void *
zalloc(size) unsigned int size;
{
	void *t = (void *) malloc(size);
	if (!t) {
		fprintf(stderr, "Malloc failed---PROGRAM ABORTED\n");
		exit(1);
	}
	memset(t, 0, size);
	return t;
}

void
zfree(p) void *p;
{
	free(p);
}