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_STAGE2_ARGS_H
6#define KERNEL_BOOT_STAGE2_ARGS_H
7
8
9#include <SupportDefs.h>
10#include <platform_stage2_args.h>
11
12
13typedef struct stage2_args {
14	size_t heap_size;
15	const char **arguments;
16	struct platform_stage2_args	platform;
17} stage2_args ;
18
19#endif	/* KERNEL_BOOT_STAGE2_ARGS_H */
20