#ifndef DOS_H_INCLUDED
#define DOS_H_INCLUDED

struct partition {
	unsigned char boot_ind;	/* 0x80 - active */
	unsigned char bh, bs, bc;
	unsigned char sys_type;
	unsigned char eh, es, ec;
	unsigned int start_sect;
	unsigned int nr_sects;
};

#endif				/* DOS_H_INCLUDED */


syntax highlighted by Code2HTML, v. 0.9.1