blob: 3016bcdd8597a81da1511b6df9ec65771b4813b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* $NetBSD: emalloc.c,v 1.2 1998/01/09 03:16:08 perry 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)
u_int size;
{
char *mem;
if ((mem = (char *)malloc(size)) == 0) {
msyslog(LOG_ERR, "No more memory!");
exit(1);
}
return mem;
}
|