16 lines
317 B
C
16 lines
317 B
C
/*
|
|||
|
|
* Copyright 2005, Axel Dörfler, [email protected]. All rights reserved.
|
||
|
|
* Distributed under the terms of the MIT License.
|
||
|
|
*/
|
||
|
|
#ifndef _KERNEL_BOOT_DEVICE_H
|
||
|
|
#define _KERNEL_BOOT_DEVICE_H
|
||
|
|
|
||
|
|
|
||
|
|
#include <sys/types.h>
|
||
|
|
|
||
|
|
|
||
|
|
extern dev_t gBootDevice;
|
||
|
|
// defined in fs/vfs_boot.cpp
|
||
|
|
|
||
|
|
#endif /* _KERNEL_BOOT_DEVICE_H */
|