1 /* 2 ** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the OpenBeOS License. 4 */ 5 #ifndef KERNEL_BOOT_HEAP_H 6 #define KERNEL_BOOT_HEAP_H 7 8 #include <SupportDefs.h> 9 #include <boot/stage2_args.h> 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 extern void heap_release(struct stage2_args *args); 16 extern status_t heap_init(struct stage2_args *args); 17 18 #ifdef __cplusplus 19 } 20 #endif 21 22 #endif /* KERNEL_BOOT_HEAP_H */ 23