summaryrefslogtreecommitdiff
path: root/sys/arch/i386
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-25 11:56:40 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-09-25 11:56:40 +0000
commit1b7bbfddd1ee91dd1def8c9c366b9c66ee5641ac (patch)
tree8be3544d1f70dce6427687079a13ecd282709abc /sys/arch/i386
parentf9d99b10dafddbcc04bc3627d68cf961eb7f1855 (diff)
u_int*_t types
Diffstat (limited to 'sys/arch/i386')
-rw-r--r--sys/arch/i386/include/disklabel.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/sys/arch/i386/include/disklabel.h b/sys/arch/i386/include/disklabel.h
index 320dae9664d..aa69dc9ae93 100644
--- a/sys/arch/i386/include/disklabel.h
+++ b/sys/arch/i386/include/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.6 1996/09/24 11:34:29 deraadt Exp $ */
+/* $OpenBSD: disklabel.h,v 1.7 1996/09/25 11:56:39 deraadt Exp $ */
/* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */
/*
@@ -45,16 +45,16 @@
#define NDOSPART 4
struct dos_partition {
- unsigned char dp_flag; /* bootstrap flags */
- unsigned char dp_shd; /* starting head */
- unsigned char dp_ssect; /* starting sector */
- unsigned char dp_scyl; /* starting cylinder */
- unsigned char dp_typ; /* partition type (see below) */
- unsigned char dp_ehd; /* end head */
- unsigned char dp_esect; /* end sector */
- unsigned char dp_ecyl; /* end cylinder */
- unsigned long dp_start; /* absolute starting sector number */
- unsigned long dp_size; /* partition size in sectors */
+ u_int8_t dp_flag; /* bootstrap flags */
+ u_int8_t dp_shd; /* starting head */
+ u_int8_t dp_ssect; /* starting sector */
+ u_int8_t dp_scyl; /* starting cylinder */
+ u_int8_t dp_typ; /* partition type (see below) */
+ u_int8_t dp_ehd; /* end head */
+ u_int8_t dp_esect; /* end sector */
+ u_int8_t dp_ecyl; /* end cylinder */
+ u_int32_t dp_start; /* absolute starting sector number */
+ u_int32_t dp_size; /* partition size in sectors */
} dos_partitions[NDOSPART];
/* Known DOS partition types. */