1 /* 2 * Part of Scheme 48 1.9. See file COPYING for notices and license. 3 * 4 * Authors: David Frese 5 */ 6 7 #ifndef __S48_PAGE_ALLOC_H 8 #define __S48_PAGE_ALLOC_H 9 10 #include "memory.h" 11 12 extern void s48_initialize_page_allocation(); 13 extern unsigned long s48_allocate_pages(unsigned long minimum, 14 unsigned long maximum, 15 s48_address* start); 16 extern void s48_free_pagesB(s48_address start, unsigned long size); 17 18 #endif 19