]> pd.if.org Git - pdclib/blob - platform/example/functions/_PDCLIB/freepages.c
PDCLib includes with quotes, not <>.
[pdclib] / platform / example / functions / _PDCLIB / freepages.c
1 /* _PDCLIB_allocpages( int const )\r
2 \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
5 */\r
6 \r
7 /* This is a stub implementation of _PDCLIB_allocpages\r
8 */\r
9 \r
10 #include <stdint.h>\r
11 #include <stddef.h>\r
12 #include "_PDCLIB_glue.h"\r
13 #include <errno.h>\r
14 \r
15 void _PDCLIB_freepages( void * p, size_t n )\r
16 {\r
17     return;\r
18 }\r
19 \r
20 #ifdef TEST\r
21 #include "_PDCLIB_test.h"\r
22 \r
23 int main( void )\r
24 {\r
25     return TEST_RESULTS;\r
26 }\r
27 \r
28 #endif\r