From 7205f0846c606cf404833036e1e41db37bd9e77a Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Tue, 17 May 2005 13:39:27 +0000 Subject: [PATCH] Heap function prototypes moved to heap.h --- src/include/etherboot.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/include/etherboot.h b/src/include/etherboot.h index 8ae65bac..e61a711f 100644 --- a/src/include/etherboot.h +++ b/src/include/etherboot.h @@ -208,14 +208,6 @@ extern void cleanup P((void)); /* config.c */ extern void print_config(void); -/* heap.c */ -extern void *allot(size_t size); -void forget(void *ptr); -extern void *allot2(size_t size, uint32_t mask); -void forget2(void *ptr); -/* Physical address of the heap */ -extern size_t heap_ptr, heap_top, heap_bot; - /* osloader.c */ /* Be careful with sector_t it is an unsigned long long on x86 */ typedef uint64_t sector_t;