]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/allocpages.c
System includes -> local includes.
[pdclib] / platform / example / functions / _PDCLIB / allocpages.c
index 1463895c74ea1b6ea7932d46be825106ef32b0cf..081adfb99993847b1d267cf882eb47ba348e7255 100644 (file)
@@ -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 )
 {