diff options
author | Chris Robinson <chris.kcat@gmail.com> | 2017-04-14 18:15:56 -0700 |
---|---|---|
committer | Chris Robinson <chris.kcat@gmail.com> | 2017-04-14 18:15:56 -0700 |
commit | afb59e7f98f40cde77c150414a8a5bd13f40781a (patch) | |
tree | 45ff03dd2eaec63563ff518a035967675b47bd55 /include/almalloc.h | |
parent | c5310d2e953c44eb33aa9bfa913e62adf11f20fd (diff) |
Move internal headers out of the include directory
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 */ |