]> pd.if.org Git - pdclib/blobdiff - platform/posix/functions/_PDCLIB/_PDCLIB_freepages.c
Cosmetic comment fixes.
[pdclib] / platform / posix / functions / _PDCLIB / _PDCLIB_freepages.c
index 5b21c4b753cd0dac47232a673f94afa7974b83a6..f527ad5124d2db1112fcc2687782dcf28fec1915 100644 (file)
@@ -4,15 +4,11 @@
    Permission is granted to use, modify, and / or redistribute at will.
 */
 
-/* This is an example implementation of _PDCLIB_allocpages() (declared in
-   _PDCLIB_config.h), fit for use with POSIX kernels.
-*/
-
 #ifndef REGTEST
 #include <stdint.h>
 #include <stddef.h>
 #include <sys/mman.h>
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 void _PDCLIB_freepages( void * p, size_t n )
 {
@@ -22,7 +18,7 @@ void _PDCLIB_freepages( void * p, size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {