Sha256: 5f952942d81d836555fd2c866fc2b2f06cb670368a3e723c92c774386cd5993a
Contents?: true
Size: 272 Bytes
Versions: 2
Compression:
Stored size: 272 Bytes
Contents
/* * aligned_malloc.c - aligned memory allocation */ #ifndef LIB_ALIGNED_MALLOC_H #define LIB_ALIGNED_MALLOC_H #include "lib_common.h" extern void *aligned_malloc(size_t alignment, size_t size); extern void aligned_free(void *ptr); #endif /* LIB_ALIGNED_MALLOC_H */
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
libdeflate-0.1.1 | ext/libdeflate/libdeflate/lib/aligned_malloc.h |
libdeflate-0.1.0 | ext/libdeflate/libdeflate/lib/aligned_malloc.h |