Allocates memory of a specified size from the heap.
#include <prmem.h> void * PR_MALLOC(_bytes);
_bytes
An untyped pointer to the allocated memory, or if the allocation attempt fails, NULL
. Call PR_GetError()
to retrieve the error returned by the libc function malloc()
.
This macro allocates memory of the requested size from the heap.