diff options
Diffstat (limited to 'include/almalloc.h')
-rw-r--r-- | include/almalloc.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/almalloc.h b/include/almalloc.h deleted file mode 100644 index 8eadb5b3..00000000 --- a/include/almalloc.h +++ /dev/null @@ -1,21 +0,0 @@ -#ifndef AL_MALLOC_H -#define AL_MALLOC_H - -#include <stddef.h> - -#ifdef __cplusplus -extern "C" { -#endif - -/* Minimum alignment required by posix_memalign. */ -#define DEF_ALIGN sizeof(void*) - -void *al_malloc(size_t alignment, size_t size); -void *al_calloc(size_t alignment, size_t size); -void al_free(void *ptr); - -#ifdef __cplusplus -} -#endif - -#endif /* AL_MALLOC_H */ |