[kpartx] shut a build warning
[platform/upstream/multipath-tools.git] / kpartx / dos.h
1 #ifndef DOS_H_INCLUDED
2 #define DOS_H_INCLUDED
3
4 struct partition {
5         unsigned char boot_ind; /* 0x80 - active */
6         unsigned char bh, bs, bc;
7         unsigned char sys_type;
8         unsigned char eh, es, ec;
9         unsigned int start_sect;
10         unsigned int nr_sects;
11 } __attribute__((packed));
12
13 #endif                          /* DOS_H_INCLUDED */