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.
9 /* This is a stub implementation of _PDCLIB_allocpages
14 #include <_PDCLIB_glue.h>
17 static void * membreak = NULL;
19 void * _PDCLIB_allocpages( size_t n )
26 #include <_PDCLIB_test.h>