]> pd.if.org Git - pdclib/blobdiff - platform/example/functions/_PDCLIB/freepages.c
Renamed some files in platform/example to match the other platforms.
[pdclib] / platform / example / functions / _PDCLIB / freepages.c
diff --git a/platform/example/functions/_PDCLIB/freepages.c b/platform/example/functions/_PDCLIB/freepages.c
deleted file mode 100644 (file)
index 6254976..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/* _PDCLIB_allocpages( int const )
-
-   This file is part of the Public Domain C Library (PDCLib).
-   Permission is granted to use, modify, and / or redistribute at will.
-*/
-
-/* This is a stub implementation of _PDCLIB_allocpages
-*/
-
-#include <stdint.h>
-#include <stddef.h>
-#include "_PDCLIB_glue.h"
-#include <errno.h>
-
-void _PDCLIB_freepages( void * p, size_t n )
-{
-    return;
-}
-
-#ifdef TEST
-#include "_PDCLIB_test.h"
-
-int main( void )
-{
-    return TEST_RESULTS;
-}
-
-#endif