picofuse

mem.h File Reference

Defines the default heap allocator wrappers. More...

#include <stddef.h>
Include dependency graph for mem.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

Default Allocator
void * sys_malloc (size_t size)
 Allocate memory from the default allocator. More...
 
void * sys_calloc (size_t count, size_t size)
 Allocate zero-initialized memory from the default allocator. More...
 
void * sys_realloc (void *ptr, size_t size)
 Resize an allocation owned by the default allocator. More...
 
void sys_free (void *ptr)
 Release an allocation owned by the default allocator. More...
 

Detailed Description

Defines the default heap allocator wrappers.

Definition in file mem.h.