mirror of
https://review.haiku-os.org/haiku
synced 2025-01-22 22:34:48 +01:00
18 lines
347 B
C
18 lines
347 B
C
|
/*
|
||
|
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. 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 */
|