valloc is not available with uClibc-ng as well as being deprecated, which causes compilation errors. aligned_alloc is not available before C11 so used posix_memalign.' Signed-off-by: Rosen Penev <rosenp@xxxxxxxxx> --- db/malloc.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/db/malloc.c b/db/malloc.c index 77b3e022..38fe0b05 100644 --- a/db/malloc.c +++ b/db/malloc.c @@ -44,8 +44,7 @@ xmalloc( { void *ptr; - ptr = valloc(size); - if (ptr) + if(!posix_memalign(&ptr, sysconf(_SC_PAGESIZE), size)) return ptr; badmalloc(); /* NOTREACHED */ -- 2.17.1