From d1e6fdd3674eff0e09554c7ddc431acb8925232f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 3 Jun 2020 19:11:23 -0400 Subject: reverse dependency order of memalign and aligned_alloc this change eliminates the internal __memalign function and makes the memalign and posix_memalign functions completely independent of the malloc implementation, written portably in terms of aligned_alloc. --- src/malloc/malloc_impl.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/malloc/malloc_impl.h') diff --git a/src/malloc/malloc_impl.h b/src/malloc/malloc_impl.h index 2c61b3ff..6a92c1c6 100644 --- a/src/malloc/malloc_impl.h +++ b/src/malloc/malloc_impl.h @@ -6,8 +6,6 @@ hidden void *__expand_heap(size_t *); -hidden void *__memalign(size_t, size_t); - struct chunk { size_t psize, csize; struct chunk *next, *prev; -- cgit v1.2.1