From: Mike Karels Date: Sun, 13 Dec 1987 15:36:36 +0000 (-0800) Subject: need struct st for a while yet X-Git-Tag: BSD-4_3_Net_1-Snapshot-Development~2932 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/9e58065e217cbddbbcadd751c7c6d371bd4edb61 need struct st for a while yet SCCS-vsn: sys/stand.att/saio.h 7.4 --- diff --git a/usr/src/sys/stand.att/saio.h b/usr/src/sys/stand.att/saio.h index e01f1bdb5e..831375434c 100644 --- a/usr/src/sys/stand.att/saio.h +++ b/usr/src/sys/stand.att/saio.h @@ -3,7 +3,7 @@ * All rights reserved. The Berkeley software License Agreement * specifies the terms and conditions for redistribution. * - * @(#)saio.h 7.3 (Berkeley) %G% + * @(#)saio.h 7.4 (Berkeley) %G% */ /* @@ -66,6 +66,20 @@ struct devsw { struct devsw devsw[]; int ndevs; +#ifdef COMPAT_42 +/* + * Old drive description table. + * still used by some drivers for now. + */ +struct st { + short nsect; /* # sectors/track */ + short ntrak; /* # tracks/surfaces/heads */ + short nspc; /* # sectors/cylinder */ + short ncyl; /* # cylinders */ + short *off; /* partition offset table (cylinders) */ +}; +#endif + /* * Request codes. Must be the same a F_XXX above */