math: rewrite rounding functions (ceil, floor, trunc, round, rint)
[musl] / src / legacy / valloc.c
1 #define _BSD_SOURCE
2 #include <stdlib.h>
3 #include <limits.h>
4
5 void *valloc(size_t size)
6 {
7         return memalign(PAGE_SIZE, size);
8 }