1 /* minix/partition.h Author: Kees J. Bot
3 * Place of a partition on disk and the disk geometry,
4 * for use with the DIOCGETP and DIOCSETP ioctl's.
6 #ifndef _MINIX__PARTITION_H
7 #define _MINIX__PARTITION_H
10 #include <sys/types.h>
14 u64_t base
; /* byte offset to the partition start */
15 u64_t size
; /* number of bytes in the partition */
16 unsigned cylinders
; /* disk geometry */
21 #endif /* _MINIX__PARTITION_H */