Add declaration for isbad().

This commit is contained in:
gwr 1997-03-04 21:59:08 +00:00
parent e481e52aa9
commit c03be2ad19
2 changed files with 14 additions and 2 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: disklabel.h,v 1.3 1995/11/10 22:05:52 gwr Exp $ */
/* $NetBSD: disklabel.h,v 1.4 1997/03/04 21:59:08 gwr Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@ -48,4 +48,10 @@ struct cpu_disklabel {
char cd_block[512];
};
#ifdef _KERNEL
struct dkbad;
int isbad __P((struct dkbad *bt, int, int, int));
#endif /* _KERNEL */
#endif /* _MACHINE_DISKLABEL_H_ */

View File

@ -1,4 +1,4 @@
/* $NetBSD: disklabel.h,v 1.1.1.1 1997/01/14 20:57:04 gwr Exp $ */
/* $NetBSD: disklabel.h,v 1.2 1997/03/04 22:00:21 gwr Exp $ */
/*
* Copyright (c) 1994 Christopher G. Demetriou
@ -48,4 +48,10 @@ struct cpu_disklabel {
char cd_block[512];
};
#ifdef _KERNEL
struct dkbad;
int isbad __P((struct dkbad *bt, int, int, int));
#endif /* _KERNEL */
#endif /* _MACHINE_DISKLABEL_H_ */