github.com/grailbio/base@v0.0.11/compress/libdeflate/aligned_malloc.h (about) 1 /* 2 * aligned_malloc.c - aligned memory allocation 3 */ 4 5 #ifndef LIB_ALIGNED_MALLOC_H 6 #define LIB_ALIGNED_MALLOC_H 7 8 #include "lib_common.h" 9 10 extern void *aligned_malloc(size_t alignment, size_t size); 11 extern void aligned_free(void *ptr); 12 13 #endif /* LIB_ALIGNED_MALLOC_H */