#include <sys/types.h>
Go to the source code of this file.
Functions | |
void * | calloc (const size_t nmemb, const size_t size) |
Allocate memory by number of elements. | |
void | free (const void *addr) |
Free a memory block. | |
void * | heap_check (void) |
void * | malloc (const size_t size) |
Allocate memory. | |
void * | memalign (const size_t align, const size_t size) |
Allocate memory with specified alignment. | |
void * | realloc (const void *addr, const size_t size) |
Reallocate memory block. |
Definition in file malloc.h.