summaryrefslogtreecommitdiffstats
path: root/usr.sbin/xntpd/lib/emalloc.c
blob: d2a8e789f0123fdf8eeebdb71bc737e64e9756ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* emalloc.c,v 3.1 1993/07/06 01:08:15 jbj Exp
 * emalloc - return new memory obtained from the system.  Belch if none.
 */
#include "ntp_types.h"
#include "ntp_malloc.h"
#include "ntp_stdlib.h"
#include "ntp_syslog.h"

char *
emalloc(size)
	unsigned int size;
{
	char *mem;

	if ((mem = (char *)malloc(size)) == 0) {
		syslog(LOG_ERR, "No more memory!");
		exit(1);
	}
	return mem;
}
OpenPOWER on IntegriCloud