X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fallocpages.c;h=081adfb99993847b1d267cf882eb47ba348e7255;hb=d6f1494a4f38a212b29a13ee713885058dcf0fe7;hp=55dd9d82a9e767d1f11701a1216df904b6e97e26;hpb=d02f38605b53cdff5460cc6b9e1b2a80c3a2ba4c;p=pdclib diff --git a/platform/example/functions/_PDCLIB/allocpages.c b/platform/example/functions/_PDCLIB/allocpages.c index 55dd9d8..081adfb 100644 --- a/platform/example/functions/_PDCLIB/allocpages.c +++ b/platform/example/functions/_PDCLIB/allocpages.c @@ -1,7 +1,3 @@ -/* $Id$ */ - -/* Release $Name$ */ - /* _PDCLIB_allocpages( int const ) This file is part of the Public Domain C Library (PDCLib). @@ -18,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; @@ -61,7 +54,7 @@ void * _PDCLIB_allocpages( int const n ) } #ifdef TEST -#include <_PDCLIB_test.h> +#include "_PDCLIB_test.h" int main( void ) {