Go to the first, previous, next, last section, table of contents.
#include <stdlib.h> void *valloc(size_t size);
This function is just like malloc
(see section malloc) except the returned
pointer is a multiple of the CPU page size which is 4096 bytes.
A pointer to a newly allocated block of memory.
not ANSI, not POSIX
char *page = valloc(getpagesize());
Go to the first, previous, next, last section, table of contents.