From 453294d1da7234a1e20c45844258abd9fe66867c Mon Sep 17 00:00:00 2001 From: Brian Carlstrom Date: Wed, 22 Aug 2012 12:07:26 -0700 Subject: [PATCH] Revert "Restore posix_memalign" This reverts commit bfc1d97531fa611ad2705c7179134b60e652ead4. --- libc/bionic/malloc_debug_common.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/libc/bionic/malloc_debug_common.c b/libc/bionic/malloc_debug_common.c index 2f4e55b2a..9333de96c 100644 --- a/libc/bionic/malloc_debug_common.c +++ b/libc/bionic/malloc_debug_common.c @@ -210,11 +210,6 @@ void* pvalloc(size_t bytes) return dlpvalloc(bytes); } -int posix_memalign(void** memptr, size_t alignment, size_t size) -{ - return dlposix_memalign(memptr, alignment, size); -} - /* Support for malloc debugging. * Note that if USE_DL_PREFIX is not defined, it's assumed that memory * allocation routines are implemented somewhere else, so all our custom