diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-10 04:02:45 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-05-10 04:02:45 +0000 |
commit | 3517e9750c30fef91dd0250badcea3be3d25c912 (patch) | |
tree | d456d0fc05f7e1f9f8bfe467d813e5ac01adaae2 /sys | |
parent | e76df7cf6db5310b8052f2b5be91d0dcf6b40437 (diff) |
prototype bounds_check_with_label
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/pmax/include/disklabel.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/arch/pmax/include/disklabel.h b/sys/arch/pmax/include/disklabel.h index bdc085cae31..07203112b77 100644 --- a/sys/arch/pmax/include/disklabel.h +++ b/sys/arch/pmax/include/disklabel.h @@ -44,4 +44,9 @@ struct cpu_disklabel { int cd_dummy; /* must have one element. */ }; +#ifdef _KERNEL +struct disklabel; +int bounds_check_with_label __P((struct buf *, struct disklabel *, int)); +#endif + #endif /* _MACHINE_DISKLABEL_H_ */ |