mirror of https://git.musl-libc.org/git/musl
1 changed files with 8 additions and 0 deletions
@ -0,0 +1,8 @@ |
|||
#define _BSD_SOURCE |
|||
#include <stdlib.h> |
|||
#include <limits.h> |
|||
|
|||
void *valloc(size_t size) |
|||
{ |
|||
return memalign(PAGE_SIZE, size); |
|||
} |
|||
Loading…
Reference in new issue