diff options
author | Chris Robinson <[email protected]> | 2019-06-06 00:42:59 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2019-06-06 00:42:59 -0700 |
commit | 39c2b18cd484478e633dc062b5f36a2c9544fb51 (patch) | |
tree | 5c294fe0183dc1bc20da46108f21c01f84218010 /common/almalloc.h | |
parent | 585b0cf3bed7d1c5720633eb7e5358a9fca865f6 (diff) |
Remove a couple unused functions
Diffstat (limited to 'common/almalloc.h')
-rw-r--r-- | common/almalloc.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/common/almalloc.h b/common/almalloc.h index 7b74b659..df329747 100644 --- a/common/almalloc.h +++ b/common/almalloc.h @@ -12,14 +12,6 @@ void *al_malloc(size_t alignment, size_t size); void *al_calloc(size_t alignment, size_t size); void al_free(void *ptr) noexcept; -size_t al_get_page_size(void) noexcept; - -/** - * Returns non-0 if the allocation function has direct alignment handling. - * Otherwise, the standard malloc is used with an over-allocation and pointer - * offset strategy. - */ -int al_is_sane_alignment_allocator(void) noexcept; #define DEF_NEWDEL(T) \ void *operator new(size_t size) \ |