mirror of
https://github.com/fluencelabs/musl
synced 2025-06-23 19:52:01 +00:00
9 lines
126 B
C
9 lines
126 B
C
![]() |
#define _BSD_SOURCE
|
||
|
#include <stdlib.h>
|
||
|
#include <limits.h>
|
||
|
|
||
|
void *valloc(size_t size)
|
||
|
{
|
||
|
return memalign(PAGE_SIZE, size);
|
||
|
}
|