33#ifndef _NO_OS_ALLOC_H_
34#define _NO_OS_ALLOC_H_
void * no_os_calloc(size_t nitems, size_t size)
Allocate memory and return a pointer to it, set memory to 0.
Definition chibios_alloc.c:54
void no_os_free(void *ptr)
Deallocate memory previously allocated by a call to no_os_calloc or no_os_malloc.
Definition chibios_alloc.c:68
void * no_os_malloc(size_t size)
Allocate memory and return a pointer to it.
Definition chibios_alloc.c:43