Moved the addr_range struct out of kernel_args.h to a separate file.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7703 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -0,0 +1,17 @@
|
|||||||
|
/*
|
||||||
|
** Copyright 2004, Axel Dörfler, [email protected]. All rights reserved.
|
||||||
|
** Distributed under the terms of the OpenBeOS License.
|
||||||
|
*/
|
||||||
|
#ifndef KERNEL_BOOT_ADDR_RANGE_H
|
||||||
|
#define KERNEL_BOOT_ADDR_RANGE_H
|
||||||
|
|
||||||
|
|
||||||
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct addr_range {
|
||||||
|
addr_t start;
|
||||||
|
addr_t size;
|
||||||
|
} addr_range;
|
||||||
|
|
||||||
|
#endif /* KERNEL_BOOT_ADDR_RANGE_H */
|
||||||
@@ -6,8 +6,8 @@
|
|||||||
#define KERNEL_BOOT_ELF_H
|
#define KERNEL_BOOT_ELF_H
|
||||||
|
|
||||||
|
|
||||||
|
#include <boot/addr_range.h>
|
||||||
#include <elf_priv.h>
|
#include <elf_priv.h>
|
||||||
#include <boot/kernel_args.h>
|
|
||||||
|
|
||||||
|
|
||||||
struct preloaded_image {
|
struct preloaded_image {
|
||||||
|
|||||||
Reference in New Issue
Block a user