3 /* _PDCLIB_allocpages( int const )
5 This file is part of the Public Domain C Library (PDCLib).
6 Permission is granted to use, modify, and / or redistribute at will.
9 /* This is a stub implementation of _PDCLIB_allocpages
15 #include <_PDCLIB_glue.h>
19 void _PDCLIB_w32errno(void);
21 void * _PDCLIB_allocpages( size_t n )
23 void * rv = VirtualAlloc(NULL, n * _PDCLIB_MALLOC_PAGESIZE, MEM_COMMIT,
33 #include <_PDCLIB_test.h>