disklabel.h revision 1.1
1/* $NetBSD: disklabel.h,v 1.1 2000/03/19 23:07:46 soren Exp $ */ 2 3#define MAXPARTITIONS 16 4#define RAW_PART 3 5 6/* Pull in MBR partition definitions. */ 7#include <sys/disklabel_mbr.h> 8 9#if 0 10struct cpu_disklabel { 11 struct mbr_partition dosparts[NMBRPART]; 12}; 13#endif 14 15/* XXX */ 16 17#ifndef __ASSEMBLER__ 18#include <sys/dkbad.h> 19struct cpu_disklabel { 20 struct mbr_partition mbrparts[NMBRPART]; 21 struct dkbad bad; 22}; 23#endif 24