Upload Tizen:Base source
[framework/base/util-linux-ng.git] / partx / 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 char start_sect[4];
10         unsigned char nr_sects[4];
11 };
12
13 #endif                          /* DOS_H_INCLUDED */