3 /* _PDCLIB_allocpages( int const )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
11 #include <_PDCLIB_glue.h>
15 void * _PDCLIB_allocpages( size_t n )
18 int rv = gd_alloc_pages( gd_loader_data, &p, n );
29 #include <_PDCLIB_test.h>