#include <oskit/c/malloc.h> void *malloc(size_t size);
void *malloc(size_t size);
Standard issue malloc function. Calls mallocf with flags value zero to allocate the memory.
size Size in bytes of desired allocation.
Returns a pointer to the allocated memory or zero if none.