6 #ifndef ALIGNED_MALLOC_H_ 7 #define ALIGNED_MALLOC_H_ 57 #define memalign(align, size) aligned_malloc(align, size) 91 #endif // ALIGNED_MALLOC_H_ int posix_memalign(void **memptr, size_t alignment, size_t size)
void aligned_free(void *ptr)
Free aligned memory.
void * aligned_malloc(size_t align, size_t size)
Allocated aligned memory.