free()

This function is Hardware-specific implementation. It is not implemented in this Compiler.

Syntax
  #include <stdlib.h>

  
  void free(void *ptr);

  
Description

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.

Return