]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/allocpages.c
PDCLib includes with quotes, not <>.
[pdclib] / platform / example / functions / _PDCLIB / allocpages.c
index aa997f67338237a15ef37f2ebe3f6020e65ec24c..27c56103a9df9f8c027de51b7276e4a4177f47bb 100644 (file)
@@ -1,5 +1,3 @@
-/* $Id$ */
-
 /* _PDCLIB_allocpages( int const )
 
    This file is part of the Public Domain C Library (PDCLib).
@@ -11,11 +9,9 @@
 
 #include <stdint.h>
 #include <stddef.h>
-#include <_PDCLIB_glue.h>
+#include "_PDCLIB_glue.h"
 #include <errno.h>
 
-static void * membreak = NULL;
-
 void * _PDCLIB_allocpages( size_t n )
 {
     errno = ENOTSUP;
@@ -23,7 +19,7 @@ void * _PDCLIB_allocpages( size_t n )
 }
 
 #ifdef TEST
-#include <_PDCLIB_test.h>
+#include "_PDCLIB_test.h"
 
 int main( void )
 {