1/*
2** Copyright 2003, Axel D��rfler, axeld@pinc-software.de. All rights reserved.
3** Distributed under the terms of the MIT 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
12extern "C" {
13#endif
14
15extern void heap_release(struct stage2_args *args);
16extern void heap_print_statistics();
17extern status_t heap_init(struct stage2_args *args);
18
19#ifdef __cplusplus
20}
21#endif
22
23#endif	/* KERNEL_BOOT_HEAP_H */
24