mirror of
https://kernel.googlesource.com/pub/scm/network/tftp/tftp-hpa
synced 2025-05-05 14:29:53 +03:00
21 lines
257 B
C
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;
|
|
}
|