summaryrefslogtreecommitdiffstats
path: root/libc
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2012-08-22 12:07:26 -0700
committerThe Android Automerger <android-build@android.com>2012-08-22 14:56:13 -0700
commit453294d1da7234a1e20c45844258abd9fe66867c (patch)
tree7fdf887da96b14ff2a7c87be372841d44438cc69 /libc
parent6773054eb3b0ed08c6f16d6222fec2e274a84111 (diff)
downloadbionic-453294d1da7234a1e20c45844258abd9fe66867c.zip
bionic-453294d1da7234a1e20c45844258abd9fe66867c.tar.gz
bionic-453294d1da7234a1e20c45844258abd9fe66867c.tar.bz2
Revert "Restore posix_memalign"
This reverts commit bfc1d97531fa611ad2705c7179134b60e652ead4.
Diffstat (limited to 'libc')
-rw-r--r--libc/bionic/malloc_debug_common.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/libc/bionic/malloc_debug_common.c b/libc/bionic/malloc_debug_common.c
index 2f4e55b..9333de9 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