X-Git-Url: https://pd.if.org/git/?a=blobdiff_plain;f=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fallocpages.c;fp=platform%2Fexample%2Ffunctions%2F_PDCLIB%2Fallocpages.c;h=0000000000000000000000000000000000000000;hb=412fd4684cfdf34b1a3368b4651b6e6c2e7fbbad;hp=27c56103a9df9f8c027de51b7276e4a4177f47bb;hpb=0fc3e46b7aa4342bbe254ba9d8129f21075db8be;p=pdclib diff --git a/platform/example/functions/_PDCLIB/allocpages.c b/platform/example/functions/_PDCLIB/allocpages.c deleted file mode 100644 index 27c5610..0000000 --- a/platform/example/functions/_PDCLIB/allocpages.c +++ /dev/null @@ -1,29 +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 -#include -#include "_PDCLIB_glue.h" -#include - -void * _PDCLIB_allocpages( size_t n ) -{ - errno = ENOTSUP; - return NULL; -} - -#ifdef TEST -#include "_PDCLIB_test.h" - -int main( void ) -{ - return TEST_RESULTS; -} - -#endif