diff options
author | Michael Brown <mcb30@etherboot.org> | 2005-05-17 13:39:27 +0000 |
---|---|---|
committer | Michael Brown <mcb30@etherboot.org> | 2005-05-17 13:39:27 +0000 |
commit | 7205f0846c606cf404833036e1e41db37bd9e77a (patch) | |
tree | d31ab1e38456e5a28e24c914d8a16bc23c0ba508 /src/include/etherboot.h | |
parent | a5f294258745e769c1ce97cd41267e919bbcebae (diff) | |
download | ipxe-7205f0846c606cf404833036e1e41db37bd9e77a.tar.gz |
Heap function prototypes moved to heap.h
Diffstat (limited to 'src/include/etherboot.h')
-rw-r--r-- | src/include/etherboot.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/include/etherboot.h b/src/include/etherboot.h index 8ae65bacf..e61a711ff 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; |