Revert "Revert "Restore posix_memalign""
This reverts commit 78a3069f827386df6166ccf9366a89be782f1dde.
This commit is contained in:
parent
2c344d3631
commit
e0d680176f
@ -210,6 +210,11 @@ 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
|
||||
|
Loading…
x
Reference in New Issue
Block a user