#include <oskit/c/malloc.h>void *memalign(size_t alignment, size_t size);
Allocate uninitialized memory with the specified byte alignment; e.g., an alignment value of 32 will return a block aligned on a 32-byte boundary. Calls memalignf with flags value zero to allocate the memory.Note that the alignment is not the same as used by the underlying LMM routines. The alignment parameter in LMM calls is the number of low-order bits that should be zero in the returned pointer.
- alignment
- Desired byte-alignment of the returned block.
- size
- Size in bytes of desired allocation.
Returns a pointer to the allocated memory or zero if none.