]> pd.if.org Git - pdclib/blob - platform/gandr/functions/_PDCLIB/_PDCLIB_freepages.c
Initial stab at gandr platform
[pdclib] / platform / gandr / functions / _PDCLIB / _PDCLIB_freepages.c
1 /* $Id$ */\r
2 \r
3 /* _PDCLIB_allocpages( int const )\r
4 \r
5    This file is part of the Public Domain C Library (PDCLib).\r
6    Permission is granted to use, modify, and / or redistribute at will.\r
7 */\r
8 \r
9 /* This is a stub implementation of _PDCLIB_allocpages\r
10 */\r
11 \r
12 #include <stdint.h>\r
13 #include <stddef.h>\r
14 #include <_PDCLIB_glue.h>\r
15 #include <errno.h>\r
16 \r
17 void _PDCLIB_freepages( void * p, size_t n )\r
18 {\r
19     return;\r
20 }\r
21 \r
22 #ifdef TEST\r
23 #include <_PDCLIB_test.h>\r
24 \r
25 int main( void )\r
26 {\r
27     return TEST_RESULTS;\r
28 }\r
29 \r
30 #endif\r