diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-29 16:30:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-03-29 16:30:22 +0000 |
commit | 65f9a8eed7a46e9f463131460b8be9db51a8b103 (patch) | |
tree | bda1b00abfa866a1181ccb07704aa96473f633e8 | |
parent | 33938bc3e87f3f3ac0d74e40bea19d63f0428a59 (diff) |
udf_disklabelspoof() proto
-rw-r--r-- | sys/sys/disklabel.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h index c15f9d4716d..4f463f2a9dd 100644 --- a/sys/sys/disklabel.h +++ b/sys/sys/disklabel.h @@ -1,4 +1,4 @@ -/* $OpenBSD: disklabel.h,v 1.25 2005/03/28 21:26:19 deraadt Exp $ */ +/* $OpenBSD: disklabel.h,v 1.26 2005/03/29 16:30:21 deraadt Exp $ */ /* $NetBSD: disklabel.h,v 1.41 1996/05/10 23:07:37 mark Exp $ */ /* @@ -370,6 +370,10 @@ int bounds_check_with_label(struct buf *, struct disklabel *, int iso_disklabelspoof(dev_t dev, void (*strat)(struct buf *), struct disklabel *lp); #endif +#ifdef UDF +int udf_disklabelspoof(dev_t dev, void (*strat)(struct buf *), + struct disklabel *lp); +#endif #endif #endif /* _LOCORE */ |