]> pd.if.org Git - pdclib/blobdiff - platform/posix/functions/_PDCLIB/_PDCLIB_allocpages.c
Cosmetic comment fixes.
[pdclib] / platform / posix / functions / _PDCLIB / _PDCLIB_allocpages.c
index 4d9f16a45e18d34e996df8a79b419d5065531030..0416f181170daffec942e1dd32021228ae092ca1 100644 (file)
@@ -1,13 +1,9 @@
-/* _PDCLIB_allocpages( int const )
+/* _PDCLIB_allocpages( size_t )
 
    This file is part of the Public Domain C Library (PDCLib).
    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
 #ifdef __linux__
 #define _GNU_SOURCE
@@ -15,7 +11,7 @@
 #include <stdint.h>
 #include <stddef.h>
 #include <sys/mman.h>
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 
 #ifndef MAP_ANON
 #define MAP_ANON MAP_ANOYNMOUS
@@ -37,7 +33,7 @@ void * _PDCLIB_allocpages( size_t n )
 #endif
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {