summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-12-05 13:08:47 +0000
committerderaadt <deraadt@openbsd.org>1996-12-05 13:08:47 +0000
commit3a76d77c6128315297b3b118c6eaa9d166cb0ada (patch)
tree9046417b6bbf7d214e1e4736c9f8d57608492205
parentprovide iso_disklabelspoof() (diff)
downloadwireguard-openbsd-3a76d77c6128315297b3b118c6eaa9d166cb0ada.tar.xz
wireguard-openbsd-3a76d77c6128315297b3b118c6eaa9d166cb0ada.zip
proto iso_disklabelspoof() inside an #ifdef (no nicer place)
-rw-r--r--sys/sys/disklabel.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/sys/disklabel.h b/sys/sys/disklabel.h
index 7e147c3e89a..8e3692c1707 100644
--- a/sys/sys/disklabel.h
+++ b/sys/sys/disklabel.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: disklabel.h,v 1.10 1996/12/03 01:06:50 downsj Exp $ */
+/* $OpenBSD: disklabel.h,v 1.11 1996/12/05 13:08:47 deraadt Exp $ */
/* $NetBSD: disklabel.h,v 1.41 1996/05/10 23:07:37 mark Exp $ */
/*
@@ -350,6 +350,10 @@ char *readdisklabel __P((dev_t, void (*)(struct buf *), struct disklabel *,
int writedisklabel __P((dev_t, void (*)(struct buf *), struct disklabel *,
struct cpu_disklabel *));
int bounds_check_with_label __P((struct buf *, struct disklabel *, int));
+#ifdef CD9660
+int iso_disklabelspoof __P((dev_t dev, void (*strat) __P((struct buf *)),
+ struct disklabel *lp));
+#endif
#endif
#endif /* _LOCORE */