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