tftp-hpa/lib/xmalloc.c

21 lines
252 B
C
Raw Normal View History

2023-05-09 22:18:22 +00:00
/*
* xmalloc.c
*
* Simple error-checking version of malloc()
*
*/
#include "config.h"
void *xmalloc(size_t size)
{
void *p = malloc(size);
if (!p) {
fprintf(stderr, "Out of memory!\n");
exit(128);
}
return p;
}