This function is Hardware-specific implementation. It is not implemented in this Compiler.
#include <stdlib.h>
void free(void *ptr);
free() deallocates a memory block previously allocated by calloc(), malloc(), or realloc(). If ptr is NULL, nothing happens. The default implementation is not reentrant; do not use in interrupt routines.