X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fallocpages.c;h=081adfb99993847b1d267cf882eb47ba348e7255;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=1463895c74ea1b6ea7932d46be825106ef32b0cf;hpb=9f87d9e27e74d9e06e0c93114ffd70a45ee152fa;p=pdclib diff --git a/platform/example/functions/_PDCLIB/allocpages.c b/platform/example/functions/_PDCLIB/allocpages.c index 1463895..081adfb 100644 --- a/platform/example/functions/_PDCLIB/allocpages.c +++ b/platform/example/functions/_PDCLIB/allocpages.c @@ -1,5 +1,3 @@ -/* $Id$ */ - /* _PDCLIB_allocpages( int const ) This file is part of the Public Domain C Library (PDCLib). @@ -16,7 +14,7 @@ int brk( void * ); void * sbrk( intptr_t ); -#include <_PDCLIB_glue.h> +#include "_PDCLIB_glue.h" static void * membreak = NULL; @@ -56,7 +54,7 @@ void * _PDCLIB_allocpages( int const n ) } #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {