X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fallocpages.c;h=081adfb99993847b1d267cf882eb47ba348e7255;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=435e8c64b8840fa7c429f2faadaf9d81caca3d8a;hpb=b08f4b52b1cd1f7a9553c0f357a7c90859fa3e73;p=pdclib diff --git a/platform/example/functions/_PDCLIB/allocpages.c b/platform/example/functions/_PDCLIB/allocpages.c index 435e8c6..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,10 +14,7 @@ int brk( void * ); void * sbrk( intptr_t ); -#ifndef _PDCLIB_GLUE_H -#define _PDCLIB_GLUE_H _PDCLIB_GLUE_H -#include <_PDCLIB_glue.h> -#endif +#include "_PDCLIB_glue.h" static void * membreak = NULL; @@ -59,7 +54,7 @@ void * _PDCLIB_allocpages( int const n ) } #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {