diff options
author | 1996-10-04 02:49:59 +0000 | |
---|---|---|
committer | 1996-10-04 02:49:59 +0000 | |
commit | e493afa26daea020b7d7c73087fd3bd0f36cdaae (patch) | |
tree | 64043995c6f7d15b5f649e296a69ac0df7050d18 | |
parent | silence warning (diff) | |
download | wireguard-openbsd-e493afa26daea020b7d7c73087fd3bd0f36cdaae.tar.xz wireguard-openbsd-e493afa26daea020b7d7c73087fd3bd0f36cdaae.zip |
do not decl global; from christos
-rw-r--r-- | sys/arch/i386/include/disklabel.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/include/disklabel.h b/sys/arch/i386/include/disklabel.h index aa69dc9ae93..0d9439a9c77 100644 --- a/sys/arch/i386/include/disklabel.h +++ b/sys/arch/i386/include/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.7 1996/09/25 11:56:39 deraadt Exp $ */ +/* $OpenBSD: disklabel.h,v 1.8 1996/10/04 02:49:59 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.3 1996/03/09 20:52:54 ghudson Exp $ */ /* @@ -55,7 +55,7 @@ struct dos_partition { 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. */ #define DOSPTYP_386BSD 0xa5 /* 386BSD partition type */ |