Definition in file malloc.h.
#include <stdlib.h>
Go to the source code of this file.
Functions | |
void * | malloc (size_t size) |
Allocation a block of memory. More... | |
void * | realloc (void *ptr, size_t size) |
Allocated a new block of memory and move the existing content. More... | |
void * | calloc (size_t size, size_t cnt) |
Allocate a memory block and set all its content to zeroes. More... | |
void | free (void *ptr) |
This is a no-op. More... | |