]> pd.if.org Git - pdclib/blob - platform/example/functions/_PDCLIB/freepages.c
Activated Tyndur tests for _PDCLIB_print().
[pdclib] / platform / example / functions / _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 "_PDCLIB_glue.h"
13 #include <errno.h>
14
15 void _PDCLIB_freepages( void * p, size_t n )
16 {
17     return;
18 }
19
20 #ifdef TEST
21 #include "_PDCLIB_test.h"
22
23 int main( void )
24 {
25     return TEST_RESULTS;
26 }
27
28 #endif