#include <oskit/c/malloc.h>void free(void *buf);
Standard issue free function. Calls lmm_free to release the memory.Note that free must only be called with memory allocated by one of: malloc, realloc, calloc, mustmalloc, mustcalloc, mallocf, memalign, or memalignf.
- buf
- Pointer to memory to be freed.