/* _PDCLIB_allocpages( int const ) This file is part of the Public Domain C Library (PDCLib). Permission is granted to use, modify, and / or redistribute at will. */ /* This is a stub implementation of _PDCLIB_allocpages */ #include #include #include "_PDCLIB_glue.h" #include void * _PDCLIB_allocpages( size_t n ) { errno = ENOTSUP; return NULL; } #ifdef TEST #include "_PDCLIB_test.h" int main( void ) { return TEST_RESULTS; } #endif