1 /* _PDCLIB_allocpages( int const )
\r
3 This file is part of the Public Domain C Library (PDCLib).
\r
4 Permission is granted to use, modify, and / or redistribute at will.
\r
7 /* This is a stub implementation of _PDCLIB_allocpages
\r
12 #include <_PDCLIB_glue.h>
\r
16 void _PDCLIB_freepages( void * p, size_t n )
\r
19 if((rv = gd_free_pages( p, n ))) {
\r
20 perror("_PDCLIB_freepages");
\r
26 #include <_PDCLIB_test.h>
\r
30 return TEST_RESULTS;
\r