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