mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-22 10:50:16 -04:00
14 lines
272 B
C
14 lines
272 B
C
/*
|
|
* 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 */
|