Revert "Restore posix_memalign"

This reverts commit bfc1d97531.
This commit is contained in:
Brian Carlstrom 2012-08-22 12:07:26 -07:00 committed by The Android Automerger
parent 6773054eb3
commit 453294d1da

View File

@ -210,11 +210,6 @@ void* pvalloc(size_t bytes)
return dlpvalloc(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. /* Support for malloc debugging.
* Note that if USE_DL_PREFIX is not defined, it's assumed that memory * Note that if USE_DL_PREFIX is not defined, it's assumed that memory
* allocation routines are implemented somewhere else, so all our custom * allocation routines are implemented somewhere else, so all our custom