#include "common.h"
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include "xmalloc.h"
Include dependency graph for xmalloc.c:
Go to the source code of this file.
Functions | |
void * | pd_realloc (void *ptr, size_t size) |
reallocs mem like realloc(). More... | |
void * | pd_malloc (size_t size) |
Allocates memory like malloc(), but exits the programm, if it fails! More... | |
void | pd_free (void *ptr) |
frees memory like free(), but not, if ptr == NULL. More... |
Definition in file xmalloc.c.
|
frees memory like free(), but not, if ptr == NULL.
|
|
Allocates memory like malloc(), but exits the programm, if it fails!
|
|
reallocs mem like realloc().
|