use internal malloc for posix_spawn file actions objects
[musl] / src / legacy / valloc.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include "libc.h"
4
5 void *valloc(size_t size)
6 {
7         return memalign(PAGE_SIZE, size);
8 }