#include <oskit/fs/fs.h>void *fs_malloc(oskit_u32_t size);
filesystem library client OS
This function returns a pointer to a chunk of contiguous memory of at least size bytes. The client operating system need not provide any alignment guarantees for the chunk of memory.
- size
- The desired number of bytes.
Returns a pointer to the chunk of memory, or NULL on error.