mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
66d97267c7
This excludes all headers in /usr/include/dev because that directory is bonkers huge (18M). We can add these on an as-needed basis.
16 lines
446 B
C
Vendored
16 lines
446 B
C
Vendored
/* $OpenBSD: disklabel.h,v 1.3 2015/09/30 15:35:30 krw Exp $ */
|
|
/* public domain */
|
|
|
|
/*
|
|
* Standard MBR partition scheme, with the label in the second sector
|
|
* of the OpenBSD partition.
|
|
*/
|
|
|
|
#ifndef _MACHINE_DISKLABEL_H_
|
|
#define _MACHINE_DISKLABEL_H_
|
|
|
|
#define LABELSECTOR 1 /* sector containing label */
|
|
#define LABELOFFSET 0 /* offset of label in sector */
|
|
#define MAXPARTITIONS 16 /* number of partitions */
|
|
|
|
#endif /* _MACHINE_DISKLABEL_H_ */ |