0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-09-19 20:05:21 +00:00
bird/lib/xmalloc.c

36 lines
695 B
C
Raw Normal View History

/*
* BIRD Library -- malloc() With Checking
*
2000-06-04 18:34:39 +00:00
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
*
* Can be freely distributed and used under the terms of the GNU GPL.
*/
#include <stdlib.h>
#include "nest/bird.h"
#include "lib/resource.h"
#ifndef HAVE_LIBDMALLOC
2000-06-04 18:34:39 +00:00
/**
* xmalloc - malloc with checking
* @size: block size
*
* This function is equivalent to malloc() except that in case of
* failure it calls die() to quit the program instead of returning
* a %NULL pointer.
*
2000-06-07 12:29:08 +00:00
* Wherever possible, please use the memory resources instead.
2000-06-04 18:34:39 +00:00
*/
void *
xmalloc(unsigned size)
{
void *p = malloc(size);
if (p)
return p;
die("Unable to allocate %d bytes of memory", size);
}
#endif