tftp-hpa-google/lib/xmalloc.c
2001-03-30 01:02:55 +00:00

21 lines
257 B
C

/*
* xmalloc.c
*
* Simple error-checking version of malloc()
*
*/
#include <stdlib.h>
#include <stdio.h>
void *xmalloc(size_t size)
{
void *p = malloc(size);
if ( !p ) {
fprintf(stderr, "Out of memory!\n");
exit(128);
}
return p;
}