]> pd.if.org Git - pdclib/blob - platform/win32/functions/_PDCLIB/_PDCLIB_freepages.c
PDCLib includes with quotes, not <>.
[pdclib] / platform / win32 / functions / _PDCLIB / _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 <errno.h>\r
13 #ifndef REGTEST\r
14 #include "_PDCLIB_glue.h"\r
15 \r
16 void _PDCLIB_freepages( void * p, size_t n )\r
17 {\r
18     return;\r
19 }\r
20 #endif\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